Searched defs:temp2 (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djchuff.c360 register int temp, temp2; local
366 temp = temp2 = block[0] - last_dc_val;
370 /* For a negative input, want temp2 = bitwise complement of abs(input) */
372 temp2--;
394 if (! emit_bits(state, (unsigned int) temp2, nbits))
412 temp2 = temp;
416 temp2--;
434 if (! emit_bits(state, (unsigned int) temp2, nbits))
H A Djcphuff.c384 register int temp, temp2; local
409 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
412 temp = temp2 - entropy->last_dc_val[ci];
413 entropy->last_dc_val[ci] = temp2;
416 temp2 = temp;
419 /* For a negative input, want temp2 = bitwise complement of abs(input) */
421 temp2--;
442 emit_bits(entropy, (unsigned int) temp2, nbits);
471 register int temp, temp2; local
501 * interwoven with finding the abs value (temp) and output bits (temp2)
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsplugin.c93 cmsUInt8Number temp2; local
96 temp2 = *pByte++;
98 *pByte++ = temp2;
H A DLCMS.c46 cmsUInt8Number temp2; local
49 temp2 = *pByte++;
51 *pByte++ = temp2;
/openjdk7/hotspot/src/share/vm/opto/
H A Ddivnode.cpp323 Node* temp2 = phase->transform(new (phase->C) RShiftLNode(w1, phase->intcon(N / 2))); local
335 return new (phase->C) AddLNode(temp1, temp2);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DmethodHandles_sparc.cpp155 Register temp2, Register temp3,
160 assert_different_registers(recv, method_temp, temp2); // temp3 is only passed on
178 temp2, local
182 __ ld_ptr(__ argument_address(temp2, temp2, -1), temp2); local
183 __ cmp_and_br_short(temp2, recv, Assembler::equal, Assembler::pt, L);
188 jump_from_method_handle(_masm, method_temp, temp2, temp3, for_compiler_entry);
289 Register temp2 = (for_compiler_entry ? G3_scratch : O2); local
295 assert_different_registers(temp2, O
153 jump_to_lambda_form(MacroAssembler* _masm, Register recv, Register method_temp, Register temp2, Register temp3, bool for_compiler_entry) argument
[all...]
H A DstubGenerator_sparc.cpp2906 Register temp1, Register temp2,
2913 const Register end_pos = temp2; // scratch
2901 arraycopy_range_checks(Register src, Register src_pos, Register dst, Register dst_pos, Register length, Register temp1, Register temp2, Label& L_failed) argument
/openjdk7/hotspot/src/cpu/x86/vm/
H A DmethodHandles_x86.cpp74 Register temp2 = noreg; local
75 LP64_ONLY(temp2 = rscratch1); // used by MacroAssembler::cmpptr
81 __ push(temp); if (temp2 != noreg) __ push(temp2);
82 #define UNPUSH { if (temp2 != noreg) __ pop(temp2); __ pop(temp); }
151 Register temp2,
156 assert_different_registers(recv, method_temp, temp2);
174 __ load_sized_value(temp2,
179 __ cmpptr(recv, __ argument_address(temp2,
149 jump_to_lambda_form(MacroAssembler* _masm, Register recv, Register method_temp, Register temp2, bool for_compiler_entry) argument
288 Register temp2 = rscratch2; local
298 Register temp2 = rdi; local
[all...]

Completed in 85 milliseconds