Searched refs:temp (Results 76 - 100 of 355) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djcdctmgr.c231 { register DCTELEM temp, qval; local
237 temp = workspace[i];
255 if (temp < 0) {
256 temp = -temp;
257 temp += qval>>1; /* for rounding */
258 DIVIDE_BY(temp, qval);
259 temp = -temp;
261 temp
322 { register FAST_FLOAT temp; local
[all...]
H A Djchuff.c360 register int temp, temp2; local
366 temp = temp2 = block[0] - last_dc_val;
368 if (temp < 0) {
369 temp = -temp; /* temp is abs value of input */
377 while (temp) {
379 temp >>= 1;
402 if ((temp = block[jpeg_natural_order[k]]) == 0) {
412 temp2 = temp;
579 register int temp; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSToken.java194 int temp;
196 temp = is.read(buffer, offset, len);
197 if (temp == -1)
201 offset += temp;
202 len -= temp;
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDSA.java357 BigInteger temp = g.modPow(k, p);
358 return temp.remainder(q);
365 BigInteger temp = new BigInteger(1, s2);
369 s = temp.add(s);
384 BigInteger temp = new BigInteger(1, s2);
386 temp = temp.multiply(w);
387 BigInteger u1 = temp.remainder(q);
488 int temp = 0;
491 temp
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodType.java119 final MethodType temp = (MethodType) other;
120 if (_resultType.identicalTo(temp._resultType)) {
122 result = len == temp.argsCount();
125 final Type arg2 = (Type)temp._argsType.elementAt(i);
144 final int temp = arg1.distanceTo(arg2);
145 if (temp == Integer.MAX_VALUE) {
146 result = temp; // return MAX_VALUE
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DKDCReq.java182 DerOutputStream temp, bytes, out;
183 temp = new DerOutputStream();
184 temp.putInteger(BigInteger.valueOf(pvno));
187 true, (byte) 0x01), temp);
188 temp = new DerOutputStream();
189 temp.putInteger(BigInteger.valueOf(msgType));
191 true, (byte) 0x02), temp);
193 temp = new DerOutputStream();
195 temp.write(pAData[i].asn1Encode());
198 bytes.write(DerValue.tag_SequenceOf, temp);
[all...]
H A DKerberosTime.java107 Date temp = encoding.getGeneralizedTime();
108 kerberosTime = temp.getTime();
147 StringBuffer temp = new StringBuffer(s);
148 while (temp.length() < length)
149 temp.insert(0, '0');
150 return temp.toString();
209 Date temp = new Date(kerberosTime);
210 temp.setTime(temp.getTime());
211 return temp;
[all...]
H A DKRBError.java435 DerOutputStream temp = new DerOutputStream();
438 temp.putInteger(BigInteger.valueOf(pvno));
439 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
440 temp = new DerOutputStream();
441 temp.putInteger(BigInteger.valueOf(msgType));
442 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x01), temp);
448 temp = new DerOutputStream();
449 temp.putInteger(BigInteger.valueOf(cuSec.intValue()));
450 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x03), temp);
454 temp
[all...]
H A DTicket.java141 DerOutputStream temp = new DerOutputStream();
143 temp.putInteger(BigInteger.valueOf(tkt_vno));
144 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
148 temp = new DerOutputStream();
149 temp.write(DerValue.tag_Sequence, bytes);
151 ticket.write(DerValue.createTag(DerValue.TAG_APPLICATION, true, (byte)0x01), temp);
H A DKDCReqBody.java237 DerOutputStream temp = new DerOutputStream();
238 temp.putInteger(BigInteger.valueOf(nonce));
239 v.addElement(new DerValue(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x07), temp.toByteArray()));
241 temp = new DerOutputStream();
243 temp.putInteger(BigInteger.valueOf(eType[i]));
246 eTypetemp.write(DerValue.tag_SequenceOf, temp);
255 temp = new DerOutputStream();
257 temp.write(additionalTickets[i].asn1Encode());
260 ticketsTemp.write(DerValue.tag_SequenceOf, temp);
265 temp
[all...]
H A DLastReq.java102 DerOutputStream temp = new DerOutputStream();
104 temp.write(entry[i].asn1Encode());
105 bytes.write(DerValue.tag_Sequence, temp);
H A DHostAddress.java257 DerOutputStream temp = new DerOutputStream();
258 temp.putInteger(this.addrType);
259 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
260 temp = new DerOutputStream();
261 temp.putOctetString(address);
262 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x01), temp);
263 temp = new DerOutputStream();
264 temp.write(DerValue.tag_Sequence, bytes);
265 return temp.toByteArray();
H A DPAData.java119 DerOutputStream temp = new DerOutputStream();
121 temp.putInteger(pADataType);
122 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, TAG_PATYPE), temp);
123 temp = new DerOutputStream();
124 temp.putOctetString(pADataValue);
125 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, TAG_PAVALUE), temp);
127 temp = new DerOutputStream();
128 temp.write(DerValue.tag_Sequence, bytes);
129 return temp.toByteArray();
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A Dcrc32.java217 String temp;
224 temp = Integer.toHexString(int2crc32(i));
226 zerofill.substring(temp.length()) + temp);
256 int temp = byte2crc32sum(data);
257 return int2quad(temp);
261 int temp = byte2crc32sum(0, data, size);
263 System.out.println(">>>crc32: " + Integer.toHexString(temp));
264 System.out.println(">>>crc32: " + Integer.toBinaryString(temp));
266 return int2quad(temp);
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/Cipher/
H A DTestSymmCiphers.java158 byte[] temp = cipher.update(in, 0, firstBlkSize);
159 if (temp != null && temp.length > 0) {
160 baos.write(temp, 0, temp.length);
162 temp = cipher.doFinal(in, firstBlkSize, in.length - firstBlkSize);
163 if (temp != null && temp.length > 0) {
164 baos.write(temp, 0, temp
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DStubQueue.java124 Stub temp = getFirst();
126 while (temp != null && getIndexOf(temp) != getIndexOf(s)) {
127 prev = temp;
128 temp = getNext(temp);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBitMap.java102 int temp = data[index] | other.data[index];
103 changed = changed || (temp != data[index]);
104 data[index] = temp;
141 int temp = data[index] & ~(other.data[index]);
142 changed = changed || (temp != data[index]);
143 data[index] = temp;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DinterpreterRT_x86_32.cpp60 __ movl(temp(), Address(from(), Interpreter::local_offset_in_bytes(from_offset)));
61 __ movl(Address(to(), to_offset * wordSize), temp());
66 __ lea(temp(), Address(from(), Interpreter::local_offset_in_bytes(from_offset)));
67 __ cmpptr(Address(from(), Interpreter::local_offset_in_bytes(from_offset)), (int32_t)NULL_WORD); // do not use temp() to avoid AGI
70 __ movptr(temp(), NULL_WORD);
72 __ movptr(Address(to(), to_offset * wordSize), temp());
90 Register InterpreterRuntime::SignatureHandlerGenerator::temp() { return rcx; } function in class:InterpreterRuntime::SignatureHandlerGenerator
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DSequence.java315 long temp = ((Track)tracks.elementAt(i)).ticks();
316 if( temp>length ) {
317 length = temp;
/openjdk7/jdk/src/share/classes/java/net/
H A DSocketOutputStream.java50 private byte temp[] = new byte[1]; field in class:SocketOutputStream
137 temp[0] = (byte)b;
138 socketWrite(temp, 0, 1);
H A DSocketInputStream.java52 private byte temp[]; field in class:SocketInputStream
209 temp = new byte[1];
210 int n = read(temp, 0, 1);
214 return temp[0] & 0xff;
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDESCrypt.java598 int temp;
620 temp = (right << 1) | ((right >> 31) & 1);
625 left ^= s0p[(int)((temp & 0x3f) ^ key[j+0])]
626 ^ s1p[(int)(((temp >> 4) & 0x3f) ^ key[j+1])]
627 ^ s2p[(int)(((temp >> 8) & 0x3f) ^ key[j+2])]
628 ^ s3p[(int)(((temp >> 12) & 0x3f) ^ key[j+3])]
629 ^ s4p[(int)(((temp >> 16) & 0x3f) ^ key[j+4])]
630 ^ s5p[(int)(((temp >> 20) & 0x3f) ^ key[j+5])]
631 ^ s6p[(int)(((temp >> 24) & 0x3f) ^ key[j+6])];
634 temp
[all...]
/openjdk7/jdk/make/common/internal/
H A DNativeCompileRules.gmk35 # created as temp files just in case a ^C kills it in the middle.
48 @$(RM) $@.temp
50 $(CC_DEPEND_FILTER) > $@.temp
51 @$(MV) $@.temp $@
56 @$(RM) $@.temp
58 $(CC_DEPEND_FILTER) > $@.temp
59 @$(MV) $@.temp $@
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DCMSBitMap.java95 int temp = (int)addr.minus(bmStartWord()) / (int) VM.getVM().getAddressSize();
96 int ret_val = temp >> shifter();
101 int temp = offset << shifter();
102 return bmStartWord().addOffsetTo(temp*VM.getVM().getAddressSize());
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/KeyWrap/
H A DNISTWrapKAT.java68 BigInteger temp = new BigInteger(KEK.substring(0, keyLen*2), 16);
69 byte[] val = temp.toByteArray();
72 temp = new BigInteger(DATA.substring(0, dataLen*2), 16);
73 val = temp.toByteArray();

Completed in 2670 milliseconds

1234567891011>>