/openjdk7/langtools/test/tools/javac/ |
H A D | QualifiedNew.java | 15 Object tmp2 = a.new Y(); field in class:QualifiedNew.Z
|
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/ |
H A D | jfdctflt.c | 65 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local 79 tmp2 = dataptr[2] + dataptr[5]; 88 tmp11 = tmp1 + tmp2; 89 tmp12 = tmp1 - tmp2; 129 tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5]; 138 tmp11 = tmp1 + tmp2; 139 tmp12 = tmp1 - tmp2;
|
H A D | jfdctfst.c | 120 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local 135 tmp2 = dataptr[2] + dataptr[5]; 144 tmp11 = tmp1 + tmp2; 145 tmp12 = tmp1 - tmp2; 185 tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5]; 194 tmp11 = tmp1 + tmp2; 195 tmp12 = tmp1 - tmp2;
|
H A D | jfdctint.c | 146 INT32 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local 163 tmp2 = dataptr[2] + dataptr[5]; 174 tmp11 = tmp1 + tmp2; 175 tmp12 = tmp1 - tmp2; 228 tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5]; 239 tmp11 = tmp1 + tmp2; 240 tmp12 = tmp1 - tmp2;
|
H A D | jidctflt.c | 76 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local 129 tmp2 = DEQUANTIZE(inptr[DCTSIZE*4], quantptr[DCTSIZE*4]); 132 tmp10 = tmp0 + tmp2; /* phase 3 */ 133 tmp11 = tmp0 - tmp2; 141 tmp2 = tmp11 - tmp12; 170 wsptr[DCTSIZE*2] = tmp2 + tmp5; 171 wsptr[DCTSIZE*5] = tmp2 - tmp5; 203 tmp2 = tmp11 - tmp12; 233 outptr[2] = range_limit[(int) DESCALE((INT32) (tmp2 + tmp5), 3) 235 outptr[5] = range_limit[(int) DESCALE((INT32) (tmp2 [all...] |
H A D | jidctfst.c | 176 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local 230 tmp2 = DEQUANTIZE(inptr[DCTSIZE*4], quantptr[DCTSIZE*4]); 233 tmp10 = tmp0 + tmp2; /* phase 3 */ 234 tmp11 = tmp0 - tmp2; 242 tmp2 = tmp11 - tmp12; 271 wsptr[DCTSIZE*2] = (int) (tmp2 + tmp5); 272 wsptr[DCTSIZE*5] = (int) (tmp2 - tmp5); 329 tmp2 = tmp11 - tmp12; 359 outptr[2] = range_limit[IDESCALE(tmp2 + tmp5, PASS1_BITS+3) 361 outptr[5] = range_limit[IDESCALE(tmp2 [all...] |
H A D | jidctint.c | 156 INT32 tmp0, tmp1, tmp2, tmp3; local 214 tmp2 = z1 + MULTIPLY(z3, - FIX_1_847759065); 225 tmp11 = tmp1 + tmp2; 226 tmp12 = tmp1 - tmp2; 234 tmp2 = DEQUANTIZE(inptr[DCTSIZE*3], quantptr[DCTSIZE*3]); 238 z2 = tmp1 + tmp2; 239 z3 = tmp0 + tmp2; 245 tmp2 = MULTIPLY(tmp2, FIX_3_072711026); /* sqrt(2) * ( c1+c3+c5-c7) */ 257 tmp2 [all...] |
H A D | jidctred.c | 126 INT32 tmp0, tmp2, tmp10, tmp12; local 168 tmp2 = MULTIPLY(z2, FIX_1_847759065) + MULTIPLY(z3, - FIX_0_765366865); 170 tmp10 = tmp0 + tmp2; 171 tmp12 = tmp0 - tmp2; 185 tmp2 = MULTIPLY(z1, - FIX_0_509795579) /* sqrt(2) * (c7-c5) */ 192 wsptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp2, CONST_BITS-PASS1_BITS+1); 193 wsptr[DCTSIZE*3] = (int) DESCALE(tmp10 - tmp2, CONST_BITS-PASS1_BITS+1); 226 tmp2 = MULTIPLY((INT32) wsptr[2], FIX_1_847759065) 229 tmp10 = tmp0 + tmp2; 230 tmp12 = tmp0 - tmp2; [all...] |
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | c1_CodeStubs_x86.cpp | 316 Register tmp2 = rbx; local 318 __ push(tmp2); 321 __ load_heap_oop_not_null(tmp2, Address(_obj, java_lang_Class::klass_offset_in_bytes())); 323 __ cmpptr(tmp, Address(tmp2, instanceKlass::init_thread_offset())); 324 __ pop(tmp2);
|
H A D | c1_LIRGenerator_x86.cpp | 321 LIR_Opr tmp2 = new_register(objectType); local 325 __ store_check(value.result(), array.result(), tmp1, tmp2, tmp3, store_check_info, x->profiled_method(), x->profiled_bci()); 848 LIR_Opr tmp2 = FrameMap::caller_save_fpu_reg_at(1); local 864 tmp2 = FrameMap::caller_save_fpu_reg_at(tmp_start + 1); 870 case vmIntrinsics::_dsin: __ sin (calc_input, calc_result, tmp1, tmp2); break; 871 case vmIntrinsics::_dcos: __ cos (calc_input, calc_result, tmp1, tmp2); break; 872 case vmIntrinsics::_dtan: __ tan (calc_input, calc_result, tmp1, tmp2); break; 875 case vmIntrinsics::_dexp: __ exp (calc_input, calc_result, tmp1, tmp2, FrameMap::rax_opr, FrameMap::rcx_opr, FrameMap::rdx_opr); break; 876 case vmIntrinsics::_dpow: __ pow (calc_input, calc_input2, calc_result, tmp1, tmp2, FrameMap::rax_opr, FrameMap::rcx_opr, FrameMap::rdx_opr); break; 1040 LIR_Opr tmp2 local 1070 LIR_Opr tmp2 = FrameMap::rsi_oop_opr; local [all...] |
H A D | c1_LIRAssembler_x86.cpp | 79 Register &tmp2) { 81 assert_different_registers(tmp1, tmp2, extra); 83 } else if (tmp2 == preserve) { 84 assert_different_registers(tmp1, tmp2, extra); 85 tmp2 = extra; 87 assert_different_registers(preserve, tmp1, tmp2); 95 Register &tmp2, 98 assert_different_registers(tmp1, tmp2, tmp3, extra); 100 } else if (tmp2 == preserve) { 101 assert_different_registers(tmp1, tmp2, tmp 76 select_different_registers(Register preserve, Register extra, Register &tmp1, Register &tmp2) argument 92 select_different_registers(Register preserve, Register extra, Register &tmp1, Register &tmp2, Register &tmp3) argument 1598 Register tmp2 = op->tmp2()->as_register(); local [all...] |
H A D | assembler_x86.cpp | 7671 Register tmp2 = rax; local 7778 pop(tmp2); 7789 testl(tmp2, tmp2); 7799 mov(tmp3, tmp2); // preserve tmp2 for parity check below 7818 testl(tmp2, 1); 8706 Register tmp2) { 8743 lea(tmp2, cardtable); 8746 addq(card_addr, tmp2); 8702 g1_write_barrier_post(Register store_addr, Register new_val, Register thread, Register tmp, Register tmp2) argument [all...] |
/openjdk7/hotspot/src/cpu/sparc/vm/ |
H A D | c1_Runtime1_sparc.cpp | 834 Register tmp2 = G3_scratch; local 853 __ ld_ptr(G2_thread, satb_q_buf_byte_offset, tmp2); 856 __ st_ptr(pre_val, tmp2, tmp); // [_buf + index] := <address_of_card> 866 __ mov(tmp2, L2); 875 __ mov(L2, tmp2); 898 Register tmp2 = G3_scratch; local 925 __ add(addr, cardtable, tmp2); 928 __ stb(G0, tmp2, 0); // [cardPtr] := 0 (i.e., dirty). 955 __ st_ptr(tmp2, tmp4, tmp3); // [_buf + index] := <address_of_card> 963 __ mov(tmp2, L [all...] |
H A D | c1_LIRGenerator_sparc.cpp | 382 LIR_Opr tmp2 = FrameMap::G3_opr; local 386 __ store_check(value.result(), array.result(), tmp1, tmp2, tmp3, store_check_info, x->profiled_method(), x->profiled_bci()); 884 LIR_Opr tmp2 = FrameMap::G3_oop_opr; local 888 new_instance(reg, x->klass(), tmp1, tmp2, tmp3, tmp4, klass_reg, info); 903 LIR_Opr tmp2 = FrameMap::G3_oop_opr; local 913 __ allocate_array(reg, len, tmp1, tmp2, tmp3, tmp4, elem_type, klass_reg, slow_path); 935 LIR_Opr tmp2 = FrameMap::G3_oop_opr; local 947 __ allocate_array(reg, len, tmp1, tmp2, tmp3, tmp4, T_OBJECT, klass_reg, slow_path); 1034 LIR_Opr tmp2 = FrameMap::G3_oop_opr; local 1036 __ checkcast(out_reg, obj.result(), x->klass(), tmp1, tmp2, tmp 1052 LIR_Opr tmp2 = FrameMap::G3_oop_opr; local [all...] |
H A D | c1_LIRAssembler_sparc.cpp | 251 Register tmp2 = L2; local 258 __ ld(str0, offset_offset, tmp2); 261 __ sll(tmp2, exact_log2(sizeof(jchar)), tmp2); 275 __ add(tmp0, tmp2, tmp0); 277 __ ld(str1, offset_offset, tmp2); 280 __ sll(tmp2, exact_log2(sizeof(jchar)), tmp2); 281 __ add(tmp1, tmp2, tmp1); 283 __ load_heap_oop(str1, value_offset, tmp2); 2068 Register tmp2 = O7; local [all...] |
H A D | assembler_sparc.cpp | 748 void MacroAssembler::serialize_memory(Register thread, Register tmp1, Register tmp2) { argument 749 srl(thread, os::get_serialize_page_shift_count(), tmp2); 751 and3(tmp2, (os::vm_page_size() - sizeof(int)), tmp2); 755 and3(tmp2, tmp1, tmp2); 758 st(G0, tmp1, tmp2);
|
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/ |
H A D | mlib_ImageZoom_NN.c | 676 mlib_u8 *tdp, *tsp, tmp0, tmp1, tmp2, tmp3; local 697 tmp2 = tsp[cx + 2]; 706 tdp[2] = tmp2; 714 tmp2 = tsp[cx + 2]; 722 tdp[2] = tmp2; 848 mlib_u16 tmp0, tmp1, tmp2, tmp3; local 876 tmp2 = *(mlib_u16 *) (tsp + cx + 4); 881 *(mlib_u16 *) (tdp + 4) = tmp2; 893 tmp2 = *(mlib_u16 *) (tsp + cx + 4); 898 *(mlib_u16 *) (tdp + 4) = tmp2; 1022 mlib_s32 cx, y_step = -1, tmp0, tmp1, tmp2, tmp3, x_max; local 1104 mlib_s32 cx, y_step = -1, tmp0, tmp1, tmp2; local 1164 mlib_s32 cx, y_step = -1, tmp0, tmp1, tmp2, tmp3; local 1331 TYPE_64 *tsp, tmp, tmp1, tmp2; local 1383 TYPE_64 *tsp, tmp, tmp1, tmp2, tmp3; local [all...] |
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | lcm.cpp | 369 Node *tmp2 = _nodes[end_idx()+2]; local 370 _nodes.map(end_idx()+1, tmp2); 374 tmp2->replace_by(tmp1); 375 tmp->replace_by(tmp2);
|
H A D | type.cpp | 3112 bool tmp2 = tinst_xk; local 3114 this_xk = tmp2;
|
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_LIR.cpp | 354 LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, 363 , _tmp2(tmp2) 384 LIR_OpTypeCheck::LIR_OpTypeCheck(LIR_Code code, LIR_Opr object, LIR_Opr array, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, CodeEmitInfo* info_for_exception) argument 390 , _tmp2(tmp2) 754 // tmp2. Register input operands as temps to guarantee that it 1429 LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, bool fast_check, 1433 tmp1, tmp2, tmp3, fast_check, info_for_exception, info_for_patch, stub); 1442 void LIR_List::instanceof(LIR_Opr result, LIR_Opr object, ciKlass* klass, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, bool fast_check, CodeEmitInfo* info_for_patch, ciMethod* profiled_method, int profiled_bci) { argument 1443 LIR_OpTypeCheck* c = new LIR_OpTypeCheck(lir_instanceof, result, object, klass, tmp1, tmp2, tmp3, fast_check, NULL, info_for_patch, NULL); 1453 void LIR_List::store_check(LIR_Opr object, LIR_Opr array, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Op argument 353 LIR_OpTypeCheck(LIR_Code code, LIR_Opr result, LIR_Opr object, ciKlass* klass, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, bool fast_check, CodeEmitInfo* info_for_exception, CodeEmitInfo* info_for_patch, CodeStub* stub) argument 1428 checkcast(LIR_Opr result, LIR_Opr object, ciKlass* klass, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, bool fast_check, CodeEmitInfo* info_for_exception, CodeEmitInfo* info_for_patch, CodeStub* stub, ciMethod* profiled_method, int profiled_bci) argument [all...] |
H A D | c1_LIR.hpp | 1424 ,LIR_Opr tmp1, LIR_Opr tmp2) 1428 , _tmp2(tmp2) 1436 LIR_Opr tmp2() const { return _tmp2; } function in class:LIR_OpConvert 1478 LIR_Opr tmp2() const { return _tmp2; } function in class:LIR_OpAllocObj 1530 LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, bool fast_check, 1533 LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, CodeEmitInfo* info_for_exception); 1538 LIR_Opr tmp2() const { return _tmp2; } function in class:LIR_OpTypeCheck 1626 LIR_Op2(LIR_Code code, LIR_Opr opr1, LIR_Opr opr2, LIR_Opr result, LIR_Opr tmp1, LIR_Opr tmp2 = LIR_OprFact::illegalOpr, 1635 , _tmp2(tmp2) 1697 LIR_Opr tmp2() cons function in class:LIR_OpAllocArray 1423 LIR_OpConvert(Bytecodes::Code code, LIR_Opr opr, LIR_Opr result, ConversionStub* stub ,LIR_Opr tmp1, LIR_Opr tmp2) argument 1817 LIR_Opr tmp2() const { return _tmp2; } function in class:LIR_OpCompareAndSwap 2008 convert(Bytecodes::Code code, LIR_Opr left, LIR_Opr dst, LIR_Opr tmp1, LIR_Opr tmp2) argument 2059 sin(LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2) argument 2060 cos(LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2) argument 2061 tan(LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2) argument 2062 exp(LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, LIR_Opr tmp4, LIR_Opr tmp5) argument 2063 pow(LIR_Opr arg1, LIR_Opr arg2, LIR_Opr res, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, LIR_Opr tmp4, LIR_Opr tmp5) argument [all...] |
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/ |
H A D | cmslut.c | 1714 cmsVEC3 tmp, tmp2; local 1786 tmp2.n[0] = fx[0] - Target[0]; 1787 tmp2.n[1] = fx[1] - Target[1]; 1788 tmp2.n[2] = fx[2] - Target[2]; 1790 if (!_cmsMAT3solve(&tmp, &Jacobian, &tmp2))
|
/openjdk7/jdk/src/share/native/sun/security/ec/impl/ |
H A D | mpi.c | 2345 mp_int C2, tmp1, tmp2; local 2360 MP_DIGITS(&tmp2) = 0; 2368 MP_CHECKOK( mp_init(&tmp2, FLAG(m)) ); 2389 MP_CHECKOK( mp_mul(&tmp1, &C2, &tmp2) ); 2390 s_mp_mod_2d(&tmp2, k); 2391 while (MP_SIGN(&tmp2) != MP_ZPOS) { 2392 MP_CHECKOK( mp_add(&tmp2, &evenFactor, &tmp2) ); 2396 MP_CHECKOK( mp_mul(&tmp2, &oddFactor, c) ); 2408 mp_clear(&tmp2); [all...] |