Searched defs:left_index (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DquickSort.hpp71 int left_index = -1; local
77 left_index++;
78 } while (comparator(array[left_index], pivot_val) == -1);
83 if (left_index < right_index) {
84 if (!idempotent || comparator(array[left_index], array[right_index]) != 0) {
85 swap(array, left_index, right_index);
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp471 size_t left_index = right_index - num_pref_cards + 1; local
479 if (left_index <= right_index) {
480 _array->set_offset_array(left_index, right_index,
493 size_t left_index = right_index - num_pref_cards + 1; local
496 if (left_index > right_index) {
501 assert(left_index <= right_index, "Error");
502 _array->set_offset_array(left_index, right_index, N_words + i - 1, true /* reducing */);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp2352 void LIR_Assembler::arith_fpu_implementation(LIR_Code code, int left_index, int right_index, int dest_index, bool pop_fpu_stack) { argument
2353 assert(pop_fpu_stack || (left_index == dest_index || right_index == dest_index), "invalid LIR");
2354 assert(!pop_fpu_stack || (left_index - 1 == dest_index || right_index - 1 == dest_index), "invalid LIR");
2355 assert(left_index == 0 || right_index == 0, "either must be on top of stack");
2357 bool left_is_tos = (left_index == 0);
2359 int non_tos_index = (left_is_tos ? right_index : left_index);
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp1162 int left_index = pconstraint->_left_inst; local
1165 InstructForm *inst_left = globals[pmatch->instruction_name(left_index)]->is_instruction();
1216 // left_index, left_op_base, left_op_index, left_op,
1226 assert( (left_index <= 9999) && (left_op_index <= 9999), "exceed string size");
1228 sprintf(left_reg_index,",inst%d_idx%d", (int)left_index, left_op_index);
1233 left_index, left_op_index, left_index, left_reg_index, left_index, left_op );
1256 left_index, left_op_index, left_index, left_o
[all...]

Completed in 50 milliseconds