Searched refs:temp (Results 51 - 75 of 355) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dcopy_bsd_x86.inline.hpp33 intx temp;
67 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
68 : "0" (from), "1" (to), "2" (count), "3" (temp)
91 intx temp;
105 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
106 : "0" (from), "1" (to), "2" (count), "3" (temp)
148 intx temp;
216 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
217 : "0" (from), "1" (to), "2" (count), "3" (temp)
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dcopy_linux_x86.inline.hpp33 intx temp;
67 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
68 : "0" (from), "1" (to), "2" (count), "3" (temp)
91 intx temp;
105 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
106 : "0" (from), "1" (to), "2" (count), "3" (temp)
148 intx temp;
216 : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
217 : "0" (from), "1" (to), "2" (count), "3" (temp)
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSHeader.java76 DerOutputStream temp = new DerOutputStream();
77 temp.putOID(mechOid);
78 mechOidBytes = temp.toByteArray();
102 DerValue temp = new DerValue(is);
103 mechOidBytes = temp.toByteArray();
104 mechOid = temp.getOID();
159 DerOutputStream temp = new DerOutputStream();
160 temp.putOID(mechOid);
161 mechOidBytesSize = temp.toByteArray().length;
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAPReq.java136 DerOutputStream temp = new DerOutputStream();
137 temp.putInteger(BigInteger.valueOf(pvno));
138 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x00), temp);
139 temp = new DerOutputStream();
140 temp.putInteger(BigInteger.valueOf(msgType));
141 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x01), temp);
145 temp = new DerOutputStream();
146 temp.write(DerValue.tag_Sequence, bytes);
148 apreq.write(DerValue.createTag(DerValue.TAG_APPLICATION, true, (byte) 0x0E), temp);
H A DEncAPRepPart.java137 DerOutputStream temp = new DerOutputStream();
140 temp.putInteger(BigInteger.valueOf(cusec));
142 true, (byte) 0x01), temp.toByteArray()));
148 temp = new DerOutputStream();
150 temp.putInteger(BigInteger.valueOf(seqNumber.longValue()));
152 true, (byte) 0x03), temp.toByteArray()));
156 temp = new DerOutputStream();
157 temp.putSequence(der);
160 true, (byte) 0x1B), temp);
H A DKRBSafe.java131 DerOutputStream temp = new DerOutputStream();
133 temp.putInteger(BigInteger.valueOf(pvno));
134 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
135 temp = new DerOutputStream();
136 temp.putInteger(BigInteger.valueOf(msgType));
137 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x01), temp);
140 temp = new DerOutputStream();
141 temp.write(DerValue.tag_Sequence, bytes);
143 bytes.write(DerValue.createTag(DerValue.TAG_APPLICATION, true, (byte)0x14), temp);
H A DAuthenticator.java180 DerOutputStream temp = new DerOutputStream();
181 temp.putInteger(BigInteger.valueOf(authenticator_vno));
182 v.addElement(new DerValue(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x00), temp.toByteArray()));
188 temp = new DerOutputStream();
189 temp.putInteger(BigInteger.valueOf(cusec));
190 v.addElement(new DerValue(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x04), temp.toByteArray()));
196 temp = new DerOutputStream();
198 temp.putInteger(BigInteger.valueOf(seqNumber.longValue()));
199 v.addElement(new DerValue(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x07), temp.toByteArray()));
206 temp
[all...]
H A DEncKrbCredPart.java175 DerOutputStream temp = new DerOutputStream();
180 temp.putSequence(tickets);
182 true, (byte) 0x00), temp);
185 temp = new DerOutputStream();
186 temp.putInteger(BigInteger.valueOf(nonce.intValue()));
188 true, (byte) 0x01), temp);
195 temp = new DerOutputStream();
196 temp.putInteger(BigInteger.valueOf(usec.intValue()));
198 true, (byte) 0x03), temp);
208 temp
[all...]
H A DKDCRep.java196 DerOutputStream temp = new DerOutputStream();
197 temp.putInteger(BigInteger.valueOf(pvno));
199 true, (byte) 0x00), temp);
200 temp = new DerOutputStream();
201 temp.putInteger(BigInteger.valueOf(msgType));
203 true, (byte) 0x01), temp);
209 temp = new DerOutputStream();
210 temp.write(DerValue.tag_SequenceOf, padata_stream);
212 true, (byte) 0x02), temp);
222 temp
[all...]
/openjdk7/jdk/src/windows/classes/sun/tools/attach/
H A DWindowsAttachProvider.java91 String temp = tempPath();
92 if ((temp != null) && (temp.length() >= 3) &&
93 (temp.charAt(1) == ':') && (temp.charAt(2) == '\\'))
96 long flags = volumeFlags(temp.substring(0, 3));
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DmethodHandles_sparc.hpp49 static void verify_ref_kind(MacroAssembler* _masm, int ref_kind, Register member_reg, Register temp) NOT_DEBUG_RETURN;
54 Register temp, Register temp2,
/openjdk7/hotspot/src/cpu/x86/vm/
H A DmethodHandles_x86.hpp46 static void verify_ref_kind(MacroAssembler* _masm, int ref_kind, Register member_reg, Register temp) NOT_DEBUG_RETURN;
50 static void jump_from_method_handle(MacroAssembler* _masm, Register method, Register temp,
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DFlowList.java66 final Vector temp = right._elements;
67 if (temp != null) {
68 final int n = temp.size();
70 _elements.addElement(temp.elementAt(i));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DObjectSynchronizer.java63 Mark temp = monitor.header();
64 return temp.hash();
70 Mark temp = mark.displacedMarkHelper();
71 return temp.hash();
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DECFieldF2m.java98 BigInteger temp = this.rp.clearBit(0).clearBit(m);
101 int index = temp.getLowestSetBit();
103 temp = temp.clearBit(index);
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DPollArrayWrapper.java87 PollArrayWrapper temp = new PollArrayWrapper(newSize);
89 replaceEntry(this, i, temp, i);
91 pollArray = temp.pollArray;
92 this.size = temp.size;
/openjdk7/jdk/src/share/classes/java/util/
H A DListResourceBundle.java190 HashMap<String,Object> temp = new HashMap<>(contents.length);
198 temp.put(key, value);
200 lookup = temp;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DJAXMStreamSource.java63 char[] temp = new char[1024];
66 while (-1 != (len = rdr.read(temp)))
67 cout.write(temp, 0, len);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DEncryptedData.java285 DerOutputStream temp = new DerOutputStream();
286 temp.putInteger(BigInteger.valueOf(this.eType));
288 true, (byte)0x00), temp);
289 temp = new DerOutputStream();
292 temp.putInteger(BigInteger.valueOf(this.kvno.longValue()));
294 true, (byte)0x01), temp);
295 temp = new DerOutputStream();
297 temp.putOctetString(this.cipher);
299 (byte)0x02), temp);
300 temp
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DRandomCookie.java44 long temp = System.currentTimeMillis() / 1000;
46 if (temp < Integer.MAX_VALUE) {
47 gmt_unix_time = (int) temp;
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DGeneralNames.java119 DerOutputStream temp = new DerOutputStream();
121 gn.encode(temp);
123 out.write(DerValue.tag_Sequence, temp);
/openjdk7/jdk/src/share/classes/sun/util/resources/
H A DOpenListResourceBundle.java126 Map temp = createMap(contents.length);
134 temp.put(key, value);
136 lookup = temp;
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DPollArrayWrapper.java104 PollArrayWrapper temp = new PollArrayWrapper(newSize);
108 replaceEntry(this, i, temp, i);
112 pollArray = temp.pollArray;
/openjdk7/jdk/make/jpda/front/
H A DMakefile74 $(RM) $@.temp
75 @$(CAT) $< | $(SED) -e "s/^#\[$(PLATFORM)\]//" > $@.temp
76 $(MV) $@.temp $@
/openjdk7/jdk/test/sun/security/krb5/
H A DKrb5NameEquals.java39 Oid temp = null;
41 temp = new Oid("1.2.840.113554.1.2.2"); // KRB5
45 MECH = temp;

Completed in 82 milliseconds

1234567891011>>