Searched refs:tmp2 (Results 1 - 25 of 39) sorted by relevance

12

/openjdk7/langtools/test/tools/javac/
H A DQualifiedNew.java15 Object tmp2 = a.new Y(); field in class:QualifiedNew.Z
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djidctint.c156 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 Djfdctflt.c65 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 Djfdctfst.c120 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 Djidctflt.c76 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 Djidctred.c126 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...]
H A Djidctfst.c176 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 Djfdctint.c146 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;
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DNegTokenTarg.java159 DerValue tmp2 = tmp1.data.getDerValue();
160 if (tmp2.isContextSpecific((byte)0x00)) {
162 negResult = tmp2.data.getEnumerated();
167 } else if (tmp2.isContextSpecific((byte)0x01)) {
169 ObjectIdentifier mech = tmp2.data.getOID();
175 } else if (tmp2.isContextSpecific((byte)0x02)) {
177 responseToken = tmp2.data.getOctetString();
178 } else if (tmp2.isContextSpecific((byte)0x03)) {
181 mechListMIC = tmp2.data.getOctetString();
H A DNegTokenInit.java158 DerValue tmp2 = tmp1.data.getDerValue();
159 if (tmp2.isContextSpecific((byte)0x00)) {
162 DerInputStream mValue = tmp2.data;
177 } else if (tmp2.isContextSpecific((byte)0x01)) {
180 } else if (tmp2.isContextSpecific((byte)0x02)) {
186 mechToken = tmp2.data.getOctetString();
187 } else if (tmp2.isContextSpecific((byte)0x03)) {
190 mechListMIC = tmp2.data.getOctetString();
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DOAEPParameters.java196 DerOutputStream tmp2, tmp3;
206 tmp2 = new DerOutputStream();
207 mdAlgId.derEncode(tmp2);
209 tmp2);
212 tmp2 = new DerOutputStream();
213 tmp2.putOID(OID_MGF1);
221 mgfDigestId.encode(tmp2);
223 tmp3.write(DerValue.tag_Sequence, tmp2);
228 tmp2 = new DerOutputStream();
229 tmp2
[all...]
H A DCipherTextStealing.java125 byte[] tmp2 = new byte[blockSize];
126 embeddedCipher.encryptBlock(tmp, 0, tmp2, 0);
127 System.arraycopy(tmp2, 0, cipher,
131 tmp2[i] = (byte)
132 (plain[plainOffset+blockSize+i] ^ tmp2[i]);
134 embeddedCipher.encryptBlock(tmp2, 0, cipher, cipherOffset);
/openjdk7/jdk/src/share/classes/sun/security/pkcs12/
H A DMacData.java175 DerOutputStream tmp2 = new DerOutputStream();
178 algid.encode(tmp2);
181 tmp2.putOctetString(digest);
183 tmp.write(DerValue.tag_Sequence, tmp2);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DEDIPartyName.java129 DerOutputStream tmp2 = new DerOutputStream();
131 tmp2.putPrintableString(assigner);
133 false, TAG_ASSIGNER), tmp2);
H A DPolicyInformation.java275 DerOutputStream tmp2 = new DerOutputStream();
277 tmp2.write(pq.getEncoded());
279 tmp.write(DerValue.tag_Sequence, tmp2);
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_ImageZoom_NN.c676 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/jdk/make/sun/awt/
H A DDepend.mak120 rm -rf make.tmp make.tmp2 make.tmp.bak
143 rm -rf make.tmp make.tmp2 make.tmp.bak
/openjdk7/jdk/make/sun/jawt/
H A DDepend.mak96 rm -rf make.tmp make.tmp2 make.tmp.bak
117 rm -rf make.tmp make.tmp2 make.tmp.bak
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_Runtime1_sparc.cpp834 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 Dc1_LIRAssembler_sparc.cpp251 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 Dc1_LIRGenerator_sparc.cpp382 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...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp316 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 Dc1_LIRGenerator_x86.cpp321 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...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp1424 ,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/classes/java/net/
H A DInetAddress.java1315 InetAddress tmp, tmp2 = reqAddr;
1318 addresses[j] = tmp2;
1319 tmp2 = tmp;
1321 addresses[i] = tmp2;

Completed in 340 milliseconds

12