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

1234567891011>>

/openjdk10/jdk/src/java.desktop/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.java83 float[] tmp = Color.RGBtoHSB(src.getRed(), src.getGreen(), src.getBlue(), null);
85 tmp[0] = clamp(tmp[0] + hOffset);
86 tmp[1] = clamp(tmp[1] + sOffset);
87 tmp[2] = clamp(tmp[2] + bOffset);
89 argbValue = (Color.HSBtoRGB(tmp[0], tmp[1], tmp[
[all...]
/openjdk10/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...]
/openjdk10/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)
/openjdk10/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.hpp40 double tmp; local
43 : "=&f"(tmp), "=Q"(*(volatile double*)dst)
46 double tmp;
49 : "=r"(tmp)
/openjdk10/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
/openjdk10/test/lib/jdk/test/lib/hprof/model/
H A DReferenceChain.java61 ReferenceChain tmp = next;
62 while (tmp != null) {
64 tmp = tmp.next;
/openjdk10/hotspot/src/jdk.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
/openjdk10/corba/src/java.corba/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;
/openjdk10/hotspot/test/compiler/interpreter/cr7116216/
H A DStackOverflow.java55 int tmp = call_count / 2;
56 return (tmp < 100 ? tmp : 100);
/openjdk10/jdk/test/java/net/URLConnection/
H A DUnknownContentType.java34 File tmp = File.createTempFile("bug4975103", null);
35 tmp.deleteOnExit();
36 URL url = tmp.toURL();
/openjdk10/jdk/src/java.base/share/classes/com/sun/crypto/provider/
H A DTlsKeyMaterialGenerator.java145 byte[] tmp = new byte[20];
154 sha.digest(tmp, 0, 20);
157 md5.update(tmp);
162 md5.digest(tmp, 0, 16);
163 System.arraycopy(tmp, 0, keyBlock, i << 4, remaining);
172 byte[] tmp = new byte[macLength];
175 System.arraycopy(keyBlock, ofs, tmp, 0, macLength);
177 clientMacKey = new SecretKeySpec(tmp, "Mac");
179 System.arraycopy(keyBlock, ofs, tmp, 0, macLength);
181 serverMacKey = new SecretKeySpec(tmp, "Ma
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/
H A DJsrScope.java78 long tmp = scope;
80 while (tmp != 0) {
81 sb.append(", ").append(tmp & 0xffff);
82 tmp = tmp >>> 16;
/openjdk10/common/bin/
H A Dhgforest.sh124 tmp=/tmp/forest.$$
125 rm -f -r ${tmp}
126 mkdir -p ${tmp}
131 echo "DEBUG: temp files are in: ${tmp}" >&2
135 echo "1" > ${tmp}/read
140 done < ${tmp}/read
141 rm ${tmp}/read
155 if [ -d ${tmp} ]; then
156 if [ "`ls ${tmp}/*
[all...]
/openjdk10/jdk/src/java.desktop/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;
137 Hashtable<Object,Object> tmp
[all...]
/openjdk10/jdk/make/gensrc/
H A DGensrcIcons.gmk83 $(RM) $$@ $$@.tmp
84 $(ECHO) "package sun.awt;" > $$@.tmp
85 $(ECHO) "public class $$($1_NAME32) {" >> $$@.tmp
86 $(ECHO) "public static int[] $$($1_SHORTNAME) = { " >> $$@.tmp
87 $(CAT) $$< | $(TOOL_AWT_TOBIN) >> $$@.tmp
88 $(ECHO) "}; }" >> $$@.tmp
89 $(MV) $$@.tmp $$@
94 $(RM) $$@ $$@.tmp
95 $(ECHO) "package sun.awt;" > $$@.tmp
96 $(ECHO) "public class $$($1_NAME64) {" >> $$@.tmp
[all...]
/openjdk10/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...]
/openjdk10/jdk/src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/
H A DAccessibilityListenerList.java115 Object[] tmp = new Object[i+2];
116 System.arraycopy(listenerList, 0, tmp, 0, i);
118 tmp[i] = t;
119 tmp[i+1] = l;
121 listenerList = tmp;
152 Object[] tmp = new Object[listenerList.length-2];
154 System.arraycopy(listenerList, 0, tmp, 0, index);
156 // the end of tmp (which is two elements
158 if (index < tmp.length)
159 System.arraycopy(listenerList, index+2, tmp, inde
[all...]
/openjdk10/jdk/test/sun/net/www/protocol/jar/jarbug/src/test/
H A DTestBug4361044.java41 File tmp = createTempDir();
43 File dir = new File(tmp, "dir!name");
51 deleteRecursively(tmp);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/
H A DSPARCBitManipulationOp.java96 Register tmp = asRegister(scratch);
97 assert !tmp.equals(dst);
98 masm.srl(src, 1, tmp);
100 masm.or(dst, tmp, dst);
101 masm.srl(dst, 2, tmp);
102 masm.or(dst, tmp, dst);
103 masm.srl(dst, 4, tmp);
104 masm.or(dst, tmp, dst);
105 masm.srl(dst, 8, tmp);
106 masm.or(dst, tmp, ds
[all...]
/openjdk10/hotspot/src/cpu/zero/vm/
H A Dinterp_masm_zero.hpp40 Register tmp,
39 delayed_value_impl(intptr_t* delayed_value_addr, Register tmp, int offset) argument
/openjdk10/jdk/src/java.base/share/classes/sun/security/x509/
H A DCertificatePolicyMap.java100 DerOutputStream tmp = new DerOutputStream();
102 issuerDomain.encode(tmp);
103 subjectDomain.encode(tmp);
104 out.write(DerValue.tag_Sequence,tmp);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/event/
H A DEventListenerList.java150 T tmp = (T)lList[i+1];
151 result[j++] = tmp;
212 Object[] tmp = new Object[i+2];
213 System.arraycopy(listenerList, 0, tmp, 0, i);
215 tmp[i] = t;
216 tmp[i+1] = l;
218 listenerList = tmp;
251 Object[] tmp = new Object[listenerList.length-2];
253 System.arraycopy(listenerList, 0, tmp, 0, index);
255 // the end of tmp (whic
[all...]
/openjdk10/langtools/make/test/bootstrap/
H A Djavadoc.sh36 ( cd doc ; find . -type f -print | LANG=C sort) > javadoc.tmp
38 if diff ${TESTSRC}/../HelloWorld.javadoc.gold.txt javadoc.tmp ; then

Completed in 364 milliseconds

1234567891011>>