Searched refs:temp (Results 176 - 200 of 355) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp358 idx_t temp = map(index) | other_map[index]; local
359 changed = changed || (temp != map(index));
360 map()[index] = temp;
373 bm_word_t temp = dest_map[index] & ~(other_map[index]); local
374 changed = changed || (temp != dest_map[index]);
375 dest_map[index] = temp;
389 bm_word_t temp = orig & other_map[index]; local
390 changed = changed || (temp != orig);
391 dest_map[index] = temp;
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djcparam.c38 long temp; local
53 temp = ((long) basic_table[i] * scale_factor + 50L) / 100L;
55 if (temp <= 0L) temp = 1L;
56 if (temp > 32767L) temp = 32767L; /* max quantizer needed for 12 bits */
57 if (force_baseline && temp > 255L)
58 temp = 255L; /* limit to baseline range if requested */
59 (*qtblptr)->quantval[i] = (UINT16) temp;
H A Djquant1.c199 long temp; local
207 temp = iroot; /* set temp = iroot ** nc */
209 temp *= iroot;
210 } while (temp <= (long) max_colors); /* repeat till iroot exceeds root */
215 ERREXIT1(cinfo, JERR_QUANT_FEW_COLORS, (int) temp);
234 temp = total_colors / Ncolors[j];
235 temp *= Ncolors[j]+1; /* done in long arith to avoid oflo */
236 if (temp > (long) max_colors)
239 total_colors = (int) temp;
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java979 private transient int[] temp; field in class:Pattern
1507 String[] temp = new String[length];
1535 temp[index++] = prefix + subResult[y];
1539 result[x] = temp[x];
1568 * Preprocess any \Q...\E sequences in `temp', meta-quoting them.
1575 if (temp[i] != '\\')
1577 else if (temp[i + 1] != 'Q')
1587 System.arraycopy(temp, 0, newtemp, 0, j);
1591 int c = temp[i++];
1598 if (temp[
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.cpp225 IndexSet *temp = one; local
227 two = temp;
364 BitBlock *temp = _blocks[i]; local
366 set->set_block(i, temp);
368 uint temp = _count; local
370 set->_count = temp;
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUnicodeSet.java631 int[] temp = new int[len + 2 + GROW_EXTRA];
632 if (i != 0) System.arraycopy(list, 0, temp, 0, i);
633 System.arraycopy(list, i, temp, i+2, len-i);
634 list = temp;
1327 int[] temp = new int[newLen + GROW_EXTRA];
1328 System.arraycopy(list, 0, temp, 0, len);
1329 list = temp;
1391 int[] temp = list;
1393 buffer = temp;
1489 int[] temp
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DUtil.java41 String temp = SecuritySupport.getSystemProperty("file.separator", "/");
42 filesep = temp.charAt(0);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DDefaultSocketFactory.java93 IIOPProfileTemplate temp =
95 IIOPAddress primary = temp.getPrimaryAddress() ;
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialClob.java389 String temp = str.substring(offset);
390 char cPattern[] = temp.toCharArray();
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsToolBarSeparatorUI.java100 Color temp = g.getColor();
121 g.setColor(temp);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Ddebug_malloc.c278 char temp[256]; local
286 md_system_error(temp, (int)sizeof(temp));
287 (void)strcpy(nice_words, temp);
291 temp, debug_check, clobbered_ptr);
307 pmess = temp;
308 for(i=0;i<(int)sizeof(temp);i++) {
320 error_message("Error: %p contains user data: %s", uptr, temp);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbApRep.java131 byte[] temp = rep.encPart.decrypt(tgs_creds.key,
133 byte[] enc_ap_rep_part = rep.encPart.reset(temp);
H A DKrbCred.java131 byte[] temp = credMessg.encPart.decrypt(key,
133 byte[] plainText = credMessg.encPart.reset(temp);
H A DKrbApReq.java280 byte[] temp = apReqMessg.ticket.encPart.reset(bytes);
281 EncTicketPart enc_ticketPart = new EncTicketPart(temp);
486 byte[] temp = authenticator.asn1Encode();
489 new EncryptedData(key, temp, usage);
H A DKrbTgsReq.java288 byte[] temp = reqBody.asn1Encode(Krb5.KRB_TGS_REQ);
302 cksum = new Checksum(Checksum.CKSUMTYPE_DEFAULT, temp, key,
309 cksum = new Checksum(Checksum.CKSUMTYPE_DEFAULT, temp);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DDefaults.template493 String temp = prefix;
494 if (temp.endsWith("cellRenderer\"")
495 || temp.endsWith("renderer\"")
496 || temp.endsWith("listRenderer\"")) {
497 temp = temp.substring(temp.lastIndexOf(":\"") + 1);
501 List<String> sparts = split(temp);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDESedeWrapCipher.java468 byte temp = out[i];
470 out[out.length-1-i] = temp;
525 byte temp = buffer[i];
527 buffer[buffer.length-1-i] = temp;
/openjdk7/jdk/src/share/native/sun/security/ec/
H A DECC_JNI.cpp178 jbyteArray temp; local
229 temp = env->NewByteArray(signature_item.len);
232 env->SetByteArrayRegion(temp, 0, signature_item.len, pSignedDigestBuffer);
233 jSignedDigest = temp;
/openjdk7/jdk/src/share/classes/java/text/
H A DDictionaryBasedBreakIterator.java466 Integer temp = (Integer)possibleBreakPositions.pop();
468 while (!currentBreakPositions.isEmpty() && temp.intValue() <
473 currentBreakPositions.push(temp);
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageWriteParam.java397 Dimension[] temp = new Dimension[sizes.length];
399 temp[i] = new Dimension(sizes[i]);
401 return temp;
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DCrypt.java303 byte temp;
335 temp = E[6*i+j];
337 E[6*i+j+24] = temp;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMimeMultipartParser.java194 byte[] temp = new byte[8192];
196 while((len=in.read(temp)) != -1) {
197 os.write(temp, 0, len);
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSManagerImpl.java116 Oid[] temp = new Oid[pos];
118 temp[i] = retVal[i];
119 retVal = temp;
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DWrapToken.java181 byte[] temp = new byte[dataSize];
182 getData(temp, 0);
187 System.arraycopy(temp, 0, retVal, 0, retVal.length);
/openjdk7/jdk/src/share/classes/sun/security/jgss/wrapper/
H A DGSSNameElement.java221 ObjectIdentifier temp = null;
225 temp = new ObjectIdentifier(din);
229 Oid mech2 = new Oid(temp.toString());

Completed in 76 milliseconds

1234567891011>>