Searched refs:right_index (Results 1 - 5 of 5) sorted by relevance
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | quickSort.hpp | 72 int right_index = length; local 80 right_index--; 81 } while (comparator(array[right_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); 88 return right_index;
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | c1_LIRAssembler_x86.hpp | 32 void arith_fpu_implementation(LIR_Code code, int left_index, int right_index, int dest_index, bool pop_fpu_stack);
|
H A D | c1_LIRAssembler_x86.cpp | 2352 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"); 2359 int non_tos_index = (left_is_tos ? right_index : left_index); 2401 assert(left_is_tos && dest_is_tos && right_index == 1, "must be guaranteed by FPU stack allocation");
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | blockOffsetTable.cpp | 470 size_t right_index = suff_index + back_by - 1; local 471 size_t left_index = right_index - num_pref_cards + 1; 472 if (right_index >= end_index - 1) { // last iteration 473 right_index = end_index - 1; 479 if (left_index <= right_index) { 480 _array->set_offset_array(left_index, right_index, 492 size_t right_index = suff_index + back_by - 1; local 493 size_t left_index = right_index - num_pref_cards + 1; 494 if (right_index >= end_index - 1) { // last iteration 495 right_index [all...] |
/openjdk7/hotspot/src/share/vm/adlc/ |
H A D | output_c.cpp | 1185 int right_index = pconstraint->_right_inst; local 1187 if( right_index != -1 ) { // Match operand 1189 InstructForm *inst_right = globals[pmatch->instruction_name(right_index)]->is_instruction(); 1217 // right_index, right_op_base, right_op_index, right_op ); 1236 if( right_index != -1 ) { 1239 assert( (right_index <= 9999) && (right_op_index <= 9999), "exceed string size"); 1241 sprintf(right_reg_index,",inst%d_idx%d", (int)right_index, right_op_index); 1246 right_index, right_op, right_index, right_op_index, right_index, right_reg_inde [all...] |
Completed in 53 milliseconds