Searched refs:temp (Results 26 - 50 of 427) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/
H A DPAEncTSEnc.java105 DerOutputStream temp = new DerOutputStream();
108 temp = new DerOutputStream();
109 temp.putInteger(BigInteger.valueOf(pAUSec.intValue()));
110 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x01), temp);
112 temp = new DerOutputStream();
113 temp.write(DerValue.tag_Sequence, bytes);
114 return temp.toByteArray();
H A DAPRep.java128 DerOutputStream temp = new DerOutputStream();
129 temp.putInteger(BigInteger.valueOf(pvno));
130 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x00), temp);
131 temp = new DerOutputStream();
132 temp.putInteger(BigInteger.valueOf(msgType));
133 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x01), temp);
135 temp = new DerOutputStream();
136 temp.write(DerValue.tag_Sequence, bytes);
138 aprep.write(DerValue.createTag(DerValue.TAG_APPLICATION, true, (byte) 0x0F), temp);
H A DAuthorizationDataEntry.java98 DerOutputStream temp = new DerOutputStream();
99 temp.putInteger(adType);
100 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x00), temp);
101 temp = new DerOutputStream();
102 temp.putOctetString(adData);
103 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x01), temp);
104 temp = new DerOutputStream();
105 temp.write(DerValue.tag_Sequence, bytes);
106 return temp.toByteArray();
H A DEncKrbPrivPart.java144 DerOutputStream temp = new DerOutputStream();
147 temp.putOctetString(userData);
148 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x00), temp);
153 temp = new DerOutputStream();
154 temp.putInteger(BigInteger.valueOf(usec.intValue()));
155 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x02), temp);
158 temp = new DerOutputStream();
160 temp.putInteger(BigInteger.valueOf(seqNumber.longValue()));
161 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte) 0x03), temp);
167 temp
[all...]
H A DKRBSafeBody.java128 DerOutputStream temp = new DerOutputStream();
129 temp.putOctetString(userData);
130 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
134 temp = new DerOutputStream();
135 temp.putInteger(BigInteger.valueOf(usec.intValue()));
136 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x02), temp);
139 temp = new DerOutputStream();
141 temp.putInteger(BigInteger.valueOf(seqNumber.longValue()));
142 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x03), temp);
146 temp
[all...]
H A DKRBCred.java162 DerOutputStream temp, bytes, out;
163 temp = new DerOutputStream();
164 temp.putInteger(BigInteger.valueOf(pvno));
167 true, (byte) 0x00), temp);
168 temp = new DerOutputStream();
169 temp.putInteger(BigInteger.valueOf(msgType));
171 true, (byte) 0x01), temp);
172 temp = new DerOutputStream();
174 temp.write(tickets[i].asn1Encode());
177 bytes.write(DerValue.tag_SequenceOf, temp);
[all...]
/openjdk10/jdk/src/java.base/unix/native/libjava/
H A Djava_props_md.c95 char *temp = NULL; local
114 temp = malloc(strlen(lc) + 1);
115 if (temp == NULL) {
133 strcpy(temp, lc);
134 p = strstr(temp, "@euro");
137 setlocale(LC_ALL, temp);
145 temp = malloc(strlen(lc) + 1);
146 if (temp == NULL) {
159 strcpy(temp, lc);
177 encoding_variant = malloc(strlen(temp)
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/transform/
H A DSourceTest.java70 String temp = xmlResultString.toString();
71 int pos = temp.lastIndexOf("count");
72 if (temp.substring(pos + 8, pos + 9).equals("1")) {
74 } else if (temp.substring(pos + 8, pos + 9).equals("2")) {
103 String temp = xmlResultString.toString();
104 int pos = temp.lastIndexOf("count");
105 if (temp.substring(pos + 8, pos + 9).equals("1")) {
107 } else if (temp.substring(pos + 8, pos + 9).equals("2")) {
136 String temp = xmlResultString.toString();
137 int pos = temp
[all...]
H A DCR6941869Test.java64 String temp = xmlResultString.toString();
65 int pos = temp.lastIndexOf("count");
66 if (temp.substring(pos + 8, pos + 9).equals("1")) {
68 } else if (temp.substring(pos + 8, pos + 9).equals("2")) {
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/encoding/
H A DDataSourceStreamingDataHandler.java52 byte[] temp = new byte[8192];
54 while((len=in.read(temp)) != -1) {
55 os.write(temp, 0, len);
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/ssl/
H A DKerberosPreMasterSecret.java133 byte[] temp = data.decrypt(sessionKey, KeyUsage.KU_UNKNOWN);
137 "decrypted premaster secret", temp);
144 if (temp.length == 52 &&
147 if (paddingByteIs(temp, 52, (byte)4) ||
148 paddingByteIs(temp, 52, (byte)0)) {
149 temp = Arrays.copyOf(temp, 48);
151 } else if (temp.length == 56 &&
154 if (paddingByteIs(temp, 56, (byte)8)) {
155 temp
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dv/util/
H A DHexBin.java74 int temp;
76 temp = binaryData[i];
77 if (temp < 0)
78 temp += 256;
79 encodedData[i*2] = lookUpHexAlphabet[temp >> 4];
80 encodedData[i*2+1] = lookUpHexAlphabet[temp & 0xf];
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/
H A DLinearScanEliminateSpillMovePhase.java212 Interval temp = interval;
213 while (!temp.isEndMarker()) {
214 assert temp.spillDefinitionPos() > 0 : "invalid spill definition pos";
216 assert temp.from() >= prev.from() : "intervals not sorted";
217 assert temp.spillDefinitionPos() >= prev.spillDefinitionPos() : "when intervals are sorted by from : then they must also be sorted by spillDefinitionPos";
220 assert temp.spillSlot() != null || temp.canMaterialize() : "interval has no spill slot assigned";
221 assert temp.spillDefinitionPos() >= temp.from() : "invalid order";
222 assert temp
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DDataFile.java79 long temp = writePointer;
81 return temp;
/openjdk10/jdk/src/java.base/share/classes/sun/security/provider/
H A DSHA.java144 int temp = W[t-3] ^ W[t-8] ^ W[t-14] ^ W[t-16];
145 W[t] = (temp << 1) | (temp >>> 31);
156 int temp = ((a<<5) | (a>>>(32-5))) +
162 a = temp;
167 int temp = ((a<<5) | (a>>>(32-5))) +
173 a = temp;
178 int temp = ((a<<5) | (a>>>(32-5))) +
184 a = temp;
189 int temp
[all...]
H A DCtrDrbg.java200 byte[] temp = new byte[m * blockLen];
202 // Step 1. temp = Null.
211 cipher.doFinal(v, 0, blockLen, temp, i * blockLen);
215 temp = Arrays.copyOf(temp, seedLen);
219 temp[i] ^= input[i];
223 k = Arrays.copyOf(temp, keyLen);
226 v = Arrays.copyOfRange(temp, seedLen - blockLen, seedLen);
296 // 6. temp = the Null String
297 byte[] temp
[all...]
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/
H A DPrincipalName.java325 String temp = name;
330 while (i < temp.length()) {
331 if (temp.charAt(i) == NAME_COMPONENT_SEPARATOR) {
336 if (i > 0 && temp.charAt(i - 1) == '\\') {
337 temp = temp.substring(0, i - 1) +
338 temp.substring(i, temp.length());
343 component = temp.substring(componentStart, i);
349 if (temp
[all...]
H A DChecksum.java81 String temp = null;
85 temp = cfg.get("libdefaults", "default_checksum");
86 if (temp != null)
88 CKSUMTYPE_DEFAULT = Config.getType(temp);
110 temp = cfg.get("libdefaults", "safe_checksum_type");
111 if (temp != null)
113 SAFECKSUMTYPE_DEFAULT = Config.getType(temp);
262 DerOutputStream temp = new DerOutputStream();
263 temp.putInteger(BigInteger.valueOf(cksumType));
265 true, (byte)0x00), temp);
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.meta/src/jdk/vm/ci/meta/
H A DAbstractProfiledItem.java68 long temp;
69 temp = Double.doubleToLongBits(probability);
70 result = prime * result + (int) (temp ^ (temp >>> 32));
/openjdk10/hotspot/test/compiler/c2/
H A DTest6823453.java43 for (Object temp = new byte[(byte) 1.0E10]; true;
53 for (Object temp = new byte[(byte) 1.0E10]; true;
64 for (Object temp = new byte[var_2]; true;
75 for (Object temp = new byte[var_2]; true;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeIteratorBase.java84 final boolean temp = _isRestartable;
88 _isRestartable = temp;
107 final int temp = _position;
114 _position = temp;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMAxisIteratorBase.java84 final boolean temp = _isRestartable;
90 _isRestartable = temp;
135 final int temp = _position; // Save state
146 _position = temp;
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/ch/
H A DPollArrayWrapper.java80 PollArrayWrapper temp = new PollArrayWrapper(newSize);
82 replaceEntry(this, i, temp, i);
84 pollArray = temp.pollArray;
85 this.size = temp.size;
/openjdk10/langtools/test/tools/javac/lambda/8023558/
H A DT8023558a.java42 SAM temp = sam.get()::get;
/openjdk10/jdk/src/java.desktop/share/native/libjavajpeg/
H A Djcphuff.c322 register int temp, nbits; local
325 temp = entropy->EOBRUN;
327 while ((temp >>= 1))
384 register int temp, temp2; local
412 temp = temp2 - entropy->last_dc_val[ci];
416 temp2 = temp;
417 if (temp < 0) {
418 temp = -temp; /* temp i
471 register int temp, temp2; local
578 register int temp; local
625 register int temp; local
[all...]

Completed in 285 milliseconds

1234567891011>>