Searched refs:top (Results 1 – 4 of 4) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ForkJoinPool.java | 787 int top; // index of next slot for push field in ForkJoinPool.WorkQueue 801 base = top = INITIAL_QUEUE_CAPACITY >>> 1; in WorkQueue() 815 int n = base - top; // read base first in queueSize() 826 return ((n = base - (s = top)) >= 0 || // possibly one task in isEmpty() 840 int s = top, al, d; ForkJoinTask<?>[] a; in push() 843 top = s + 1; in push() 867 (t = top) - (b = base) > 0) { in growArray() 888 int b = base, s = top, al, i; ForkJoinTask<?>[] a; in pop() 896 top = s; in pop() 929 int b = base, s = top, d, al; ForkJoinTask<?>[] a; in poll() [all …]
|
/libcore/luni/src/main/native/ |
D | java_math_NativeBN.cpp | 37 if (bn != NULL && bn->top != 0 && bn->d[bn->top-1] == 0) { in bn_check_top() 144 a->top = 2; in NativeBN_putULongInt() 235 ret->top = wlen; in NativeBN_litEndInts2bn() 245 ret->top = 0; in NativeBN_litEndInts2bn() 268 ret->top = wLen; in negBigEndianBytes2bn() 341 int wLen = a->top; in NativeBN_longInt() 413 int wLen = a->top; in NativeBN_bn2litEndInts() 456 int wLen = a->top; in NativeBN_bitLength()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | Character.java | 3028 int top, bottom, current; in of() local 3030 top = blockStarts.length; in of() 3031 current = top/2; in of() 3034 while (top - bottom > 1) { in of() 3038 top = current; in of() 3040 current = (top + bottom) / 2; in of()
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | R.java | 2408 public static final int top = 0; field in R
|