Searched defs:tmp (Results 1 - 5 of 5) sorted by relevance

/libcore/support/src/test/java/tests/support/
H A DSupport_ClassLoaderDalvik.java32 private static File tmp; field in class:Support_ClassLoaderDalvik
35 tmp = new File(System.getProperty("java.io.tmpdir"), "dex-cache");
36 tmp.mkdirs();
41 return new DexClassLoader(url.getPath(), tmp.getAbsolutePath(),
/libcore/luni/src/main/native/
H A DNetworkUtilities.cpp37 sockaddr_storage tmp; local
38 memset(&tmp, 0, sizeof(tmp));
39 memcpy(&tmp, &ss, sizeof(sockaddr_in6));
41 sockaddr_in& sin = reinterpret_cast<sockaddr_in&>(tmp);
46 return sockaddrToInetAddress(env, tmp, port);
/libcore/ojluni/src/main/java/java/util/
H A DComparableTimSort.java81 * Maximum initial size of tmp array, which is used for merging. The array
94 private Object[] tmp; field in class:ComparableTimSort
95 private int tmpBase; // base of tmp array slice
96 private int tmpLen; // length of tmp array slice
128 tmp = new Object[tlen];
133 tmp = work;
479 // Merge remaining runs, using tmp array with min(len1, len2) elements
537 int tmp = lastOfs;
539 ofs = hint - tmp;
592 int tmp
[all...]
H A DTimSort.java106 * Maximum initial size of tmp array, which is used for merging. The array
119 private T[] tmp; field in class:TimSort
120 private int tmpBase; // base of tmp array slice
121 private int tmpLen; // length of tmp array slice
158 tmp = newArray;
163 tmp = work;
512 // Merge remaining runs, using tmp array with min(len1, len2) elements
570 int tmp = lastOfs;
572 ofs = hint - tmp;
626 int tmp
[all...]
/libcore/ojluni/src/main/native/
H A Dzip_util.c1420 char tmp[BUF_SIZE]; local
1441 jint n = count > (jlong)sizeof(tmp) ? (jint)sizeof(tmp) : (jint)count;
1443 n = ZIP_Read(zip, entry, pos, tmp, n);
1454 strm.next_in = (Bytef *)tmp;

Completed in 329 milliseconds