Home
last modified time | relevance | path

Searched refs:top (Results 1 – 8 of 8) 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()
360 top.stream().close(); in next()
369 return new Event(EventType.END_DIRECTORY, top.directory(), ioe); in next()
/libcore/ojluni/src/test/java/lang/Math/
DIeeeRecommendedTests.java198 float top = Float.MIN_VALUE; in testFloatGetExponent() local
201 i++, top *= 2.0f) { in testFloatGetExponent()
203 testGetExponentCase(top, Float.MIN_EXPONENT - 1); in testFloatGetExponent()
208 testGetExponentCase(Math.nextAfter(top, 0.0f), Float.MIN_EXPONENT - 1); in testFloatGetExponent()
215 Float.floatToIntBits(top) | in testFloatGetExponent()
296 double top = Double.MIN_VALUE; in testDoubleGetExponent() local
299 i++, top *= 2.0f) { in testDoubleGetExponent()
301 testGetExponentCase(top, in testDoubleGetExponent()
307 testGetExponentCase(Math.nextAfter(top, 0.0), in testDoubleGetExponent()
315 Double.doubleToLongBits(top) | in testDoubleGetExponent()
[all …]
/libcore/ojluni/src/main/java/java/util/concurrent/
DForkJoinPool.java892 int top; // index of next slot for push
955 int n = top - base;
964 return !((source != 0 && owner == null) || top - base > 0);
976 int s = top++, d = s - base, cap, m; // skip insert if disabled
993 int s = top++, d = s - base, cap, m;
1012 int s = top - 1, oldCap, newCap;
1018 top = s;
1043 int s = top, cap; ForkJoinTask<?>[] a;
1046 top = s;
1054 int s = top, cap; ForkJoinTask<?>[] a;
[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/jdk/internal/math/
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/jdk/internal/misc/
DUnsafe.java4046 private static int pickPos(int top, int pos) { return BIG_ENDIAN ? top - pos : pos; } in pickPos() argument
/libcore/ojluni/src/main/java/java/lang/
DCharacter.java4252 int top, bottom, current; in of() local
4254 top = blockStarts.length; in of()
4255 current = top/2; in of()
4258 while (top - bottom > 1) { in of()
4262 top = current; in of()
4264 current = (top + bottom) / 2; in of()
/libcore/benchmarks/src/benchmarks/regression/
DR.java2408 public static final int top = 0; field in R