Home
last modified time | relevance | path

Searched refs:top (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/file/
DFileTreeWalker.java334 DirectoryNode top = stack.peek(); in next() local
335 if (top == null) in next()
345 if (!top.skipped()) { in next()
346 Iterator<Path> iterator = top.iterator(); in next()
359 top.stream().close(); in next()
368 return new Event(EventType.END_DIRECTORY, top.directory(), ioe); in next()
/libcore/ojluni/src/main/java/java/util/concurrent/
DForkJoinPool.java818 int top; // index of next slot for push field in ForkJoinPool.WorkQueue
833 base = top = INITIAL_QUEUE_CAPACITY >>> 1; in WorkQueue()
847 int n = base - top; // read base first in queueSize()
858 return ((n = base - (s = top)) >= 0 || // possibly one task in isEmpty()
872 int s = top, al, d; ForkJoinTask<?>[] a; in push()
875 top = s + 1; in push()
899 (t = top) - (b = base) > 0) { in growArray()
920 int b = base, s = top, al, i; ForkJoinTask<?>[] a; in pop()
928 top = s; in pop()
961 int b = base, s = top, d, al; ForkJoinTask<?>[] a; in poll()
[all …]
/libcore/ojluni/src/test/java/nio/file/attribute/
DBasicFileAttributeViewCreationTimeTest.java64 static void test(Path top) throws IOException { in test() argument
65 Path file = Files.createFile(top.resolve("foo")); in test()
/libcore/ojluni/src/main/java/sun/misc/
DFDBigInteger.java1057 long top = (big.data[big.nWords - 1] & LONG_MASK); in addAndCmp() local
1059 top += (small.data[small.nWords - 1] & LONG_MASK); in addAndCmp()
1061 if ((top >>> 32) == 0) { in addAndCmp()
1062 if (((top + 1) >>> 32) == 0) { in addAndCmp()
1069 if (v < top) { in addAndCmp()
1072 if (v > top + 1) { in addAndCmp()
1081 top >>>= 32; in addAndCmp()
1083 if (v < top) { in addAndCmp()
1086 if (v > top + 1) { in addAndCmp()
/libcore/ojluni/src/main/java/java/lang/
DCharacter.java3155 int top, bottom, current; in of() local
3157 top = blockStarts.length; in of()
3158 current = top/2; in of()
3161 while (top - bottom > 1) { in of()
3165 top = current; in of()
3167 current = (top + bottom) / 2; in of()
/libcore/ojluni/annotations/
DREADME35 …4. Add @libcore.api.Hide to each top-level class in the new files. This will prevent it from being…
/libcore/benchmarks/src/benchmarks/regression/
DR.java2408 public static final int top = 0; field in R