Searched refs:tmp (Results 1 - 25 of 518) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DEffect.java94 int[] tmp;
95 if (tmpIntArray == null || (tmp = tmpIntArray.get()) == null || tmp.length < size) {
97 tmp = new int[size];
98 tmpIntArray = new SoftReference<int[]>(tmp);
100 return tmp;
104 byte[] tmp;
105 if (tmpByteArray1 == null || (tmp = tmpByteArray1.get()) == null || tmp.length < size) {
107 tmp
[all...]
H A DDerivedColor.java82 float[] tmp = Color.RGBtoHSB(src.getRed(), src.getGreen(), src.getBlue(), null);
84 tmp[0] = clamp(tmp[0] + hOffset);
85 tmp[1] = clamp(tmp[1] + sOffset);
86 tmp[2] = clamp(tmp[2] + bOffset);
88 argbValue = (Color.HSBtoRGB(tmp[0], tmp[1], tmp[
[all...]
/openjdk7/jdk/test/java/rmi/reliability/scripts/
H A Dcreate_benchmark_jars.ksh33 rm -rf /tmp/rmibench
36 mkdir -p /tmp/rmibench
37 cp -r ../benchmark/bench /tmp/rmibench/
38 rm -rf /tmp/rmibench/bench/SCCS
39 rm -rf /tmp/rmibench/bench/rmi/SCCS
40 rm -rf /tmp/rmibench/bench/serial
41 rm -rf /tmp/rmibench/bench/rmi/altroot/SCCS
44 /tmp/rmibench/bench/rmi/altroot/*.java \
45 /tmp/rmibench/bench/rmi/*.java \
46 /tmp/rmibenc
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.hpp40 double tmp; local
43 : "=f"(tmp)
46 double tmp;
49 : "=r"(tmp)
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.hpp40 double tmp; local
43 : "=f"(tmp)
46 double tmp;
49 : "=r"(tmp)
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DReferenceChain.java61 ReferenceChain tmp = next;
62 while (tmp != null) {
64 tmp = tmp.next;
/openjdk7/langtools/make/test/
H A Dcontents.sh34 ( cd ${TOPDIR}/dist ; find . -type f -print | LANG=C sort ) > contents.tmp
36 if diff ${TESTSRC}/contents.gold.txt contents.tmp ; then
/openjdk7/hotspot/agent/test/libproc/
H A Dlibproctest.sh48 tmp=/tmp/libproctest
49 rm -f $tmp
50 $SA_JAVA -classpath $STARTDIR LibprocTest > $tmp &
52 while [ ! -s $tmp ] ; do
H A Dlibproctest64.sh48 tmp=/tmp/libproctest
49 rm -f $tmp
50 $SA_JAVA -d64 -classpath $STARTDIR LibprocTest > $tmp &
52 while [ ! -s $tmp ] ; do
/openjdk7/jdk/make/java/java/
H A Dgenlocales.gmk83 @$(RM) $@.tmp.euro $@.tmp.noneuro;
85 @$(ECHO) $(Euro_Resources_properties) | $(NAWK) 'gsub(/.properties/,"\n") {print}' > $@.tmp.euro;
86 @$(ECHO) $(Euro_Resources_java) | $(NAWK) 'gsub(/.java/,"\n") {print}' >> $@.tmp.euro;
87 @$(ECHO) $(NonEuro_Resources_properties) | $(NAWK) 'gsub(/.properties/,"\n") {print}' > $@.tmp.noneuro;
88 @$(ECHO) $(NonEuro_Resources_java) | $(NAWK) 'gsub(/.java/,"\n") {print}' >> $@.tmp.noneuro;
90 $(SH) $(LOCALEGEN_SH) $(RESOURCE_NAMES) $@.tmp.euro \
91 $@.tmp.noneuro $< $@
92 @$(RM) $@.tmp.euro $@.tmp
[all...]
/openjdk7/jdk/src/share/classes/sun/net/
H A DInetAddressCachePolicy.java87 Integer tmp = null;
90 tmp = new Integer(
100 if (tmp != null) {
101 cachePolicy = tmp.intValue();
107 tmp = java.security.AccessController.doPrivileged
109 if (tmp != null) {
110 cachePolicy = tmp.intValue();
126 tmp = new Integer(
137 if (tmp != null) {
138 negativeCachePolicy = tmp
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DBooleanNot.java54 Object tmp = operand ().evaluate ();
56 //daz if (tmp instanceof Number)
57 // op = new Boolean (((Number)tmp).longValue () != 0);
59 // op = (Boolean)tmp;
60 if (tmp instanceof Number)
62 if (tmp instanceof BigInteger)
63 op = new Boolean (((BigInteger)tmp).compareTo (zero) != 0);
65 op = new Boolean (((Number)tmp).longValue () != 0);
68 op = (Boolean)tmp;
/openjdk7/hotspot/test/compiler/7116216/
H A DStackOverflow.java54 int tmp = call_count / 2;
55 return (tmp < 100 ? tmp : 100);
/openjdk7/jdk/test/java/net/URLConnection/
H A DUnknownContentType.java34 File tmp = File.createTempFile("bug4975103", null);
35 tmp.deleteOnExit();
36 URL url = tmp.toURL();
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DTlsKeyMaterialGenerator.java143 byte[] tmp = new byte[20];
152 sha.digest(tmp, 0, 20);
155 md5.update(tmp);
160 md5.digest(tmp, 0, 16);
161 System.arraycopy(tmp, 0, keyBlock, i << 4, remaining);
169 byte[] tmp = new byte[macLength];
172 System.arraycopy(keyBlock, ofs, tmp, 0, macLength);
174 clientMacKey = new SecretKeySpec(tmp, "Mac");
176 System.arraycopy(keyBlock, ofs, tmp, 0, macLength);
178 serverMacKey = new SecretKeySpec(tmp, "Ma
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEventListenerAggregate.java90 EventListener[] tmp = (EventListener[])Array.newInstance(listenerClass, listenerList.length + 1);
91 System.arraycopy(listenerList, 0, tmp, 0, listenerList.length);
92 tmp[listenerList.length] = listener;
93 listenerList = tmp;
119 EventListener[] tmp = (EventListener[])Array.newInstance(listenerClass,
121 System.arraycopy(listenerList, 0, tmp, 0, i);
122 System.arraycopy(listenerList, i + 1, tmp, i, listenerList.length - i - 1);
123 listenerList = tmp;
/openjdk7/jdk/test/java/io/Serializable/evolution/AddedExternField/
H A Drun.sh28 rm *.class tmp.ser
/openjdk7/hotspot/agent/test/jdi/
H A Dsasanity.sh70 tmp=/tmp/sagsetup
71 rm -f $tmp
72 $jdk/bin/java $* sagtarg > $tmp &
74 while [ ! -s $tmp ] ; do
/openjdk7/jdk/src/share/classes/javax/swing/
H A DArrayTable.java115 Object[] tmp = (Object[])table;
116 for (int i = 0; i<tmp.length-1; i+=2) {
117 if (tmp[i].equals(key)) {
118 tmp[i+1]=value;
125 Object[] tmp = new Object[i+2];
126 System.arraycopy(array, 0, tmp, 0, i);
128 tmp[i] = key;
129 tmp[i+1] = value;
130 table = tmp;
222 Object[] tmp
[all...]
/openjdk7/make/scripts/
H A Dhgforest.sh30 tmp=/tmp/forest.$$
31 rm -f -r ${tmp}
32 mkdir -p ${tmp}
34 # Remove tmp area on A. B. Normal termination
35 trap 'rm -f -r ${tmp}' KILL
36 trap 'rm -f -r ${tmp}' EXIT
111 ) > ${tmp}/repo.${n} 2>&1 ; cat ${tmp}/repo.${n} ) &
130 ) > ${tmp}/rep
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.hpp50 MemRecorder* tmp = _recorder_list; local
52 return tmp;
66 MemRecorder* tmp = _recorder_list; local
67 for (; tmp->next() != NULL; tmp = tmp->next());
68 tmp->set_next(head);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUCEncoder.java102 private byte tmp[] = new byte[2]; field in class:UCEncoder
151 tmp[0] = (byte) length;
152 tmp[1] = (byte) sequence;
154 encodeAtom(outStream, tmp, 0, 2);
164 tmp[0] = (byte) ((crc.value >>> 8) & 0xff);
165 tmp[1] = (byte) (crc.value & 0xff);
166 encodeAtom(outStream, tmp, 0, 2);
H A DUCDecoder.java111 private byte tmp[] = new byte[2]; field in class:UCDecoder
122 byte tmp[] = new byte[3];
124 i = inStream.read(tmp);
129 if (tmp[0] == map_array[i]) {
132 if (tmp[1] == map_array[i]) {
135 if (tmp[2] == map_array[i]) {
192 c = inStream.read(tmp, 0, 1);
196 if (tmp[0] == '*') {
223 byte tmp[];
227 tmp
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/keyresolver/
H A DKeyResolverSpi.java89 KeyResolverSpi tmp = cloneIfNeeded();
90 if (!tmp.engineCanResolve(element, BaseURI, storage))
92 return tmp.engineResolvePublicKey(element, BaseURI, storage);
96 KeyResolverSpi tmp=this;
99 tmp = (KeyResolverSpi) getClass().newInstance();
106 return tmp;
138 KeyResolverSpi tmp = cloneIfNeeded();
139 if (!tmp.engineCanResolve(element, BaseURI, storage))
141 return tmp.engineResolveX509Certificate(element, BaseURI, storage);
173 KeyResolverSpi tmp
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dargs.cc142 int tmp = sig[i]; local
143 if( tmp == Op_RegP )
144 tmp = LP64 ? Op_RegL : Op_RegI; // Treat ptrs and ints or long accordingly
145 switch( tmp ) {
148 if( int_reg < int_reg_max) tmp = INT_SCALE(int_reg++) + int_base;
149 else tmp = STACK_num + stk_reg++;
150 sig[i] = tmp;
158 tmp = INT_SCALE(int_reg++) + int_base;
160 tmp = STACK_num + stk_reg_pairs;
165 tmp
227 int tmp; local
256 int tmp; local
[all...]

Completed in 109 milliseconds

1234567891011>>