Home
last modified time | relevance | path

Searched refs:preds (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListMap.java1160 Index<K,V>[] preds = (Index<K,V>[])new Index<?,?>[64]; in buildFromSorted() local
1162 Index<K,V> h = preds[0] = new Index<K,V>(bp, null, null); in buildFromSorted()
1179 if ((q = preds[i]) == null) in buildFromSorted()
1180 preds[i] = h = new Index<K,V>(h.node, h, idx); in buildFromSorted()
1182 preds[i] = q.right = idx; in buildFromSorted()
1183 } while (++i < preds.length && ((m >>>= 1) & 1L) != 0L); in buildFromSorted()
1241 Index<K,V>[] preds = (Index<K,V>[])new Index<?,?>[64]; in readObject() local
1243 Index<K,V> h = preds[0] = new Index<K,V>(bp, null, null); in readObject()
1266 if ((q = preds[i]) == null) in readObject()
1267 preds[i] = h = new Index<K,V>(h.node, h, idx); in readObject()
[all …]
/libcore/ojluni/src/test/java/lang/invoke/
DMethodHandlesGeneralTest.java1473 final MethodHandle[] preds = new MethodHandle[] {hip, hdp, hsp}; in testGenericLoopCombinator() local
1477 MethodHandle[] usePreds = Arrays.copyOf(preds, nargs, MethodHandle[].class); in testGenericLoopCombinator()
1489 …void testGenericLoopCombinator(int nargs, Class<?>[] argTypes, MethodHandle[] preds, MethodHandle[… in testGenericLoopCombinator() argument
1520 preds[i] = MethodHandles.dropArguments( in testGenericLoopCombinator()
1521 … MethodHandles.dropArguments(preds[i], i + 1, additionalLocalStateArgTypes), nargs, lArgTypes); in testGenericLoopCombinator()
1529 usePreds = preds; in testGenericLoopCombinator()
1534 usePreds[i] = preds[i]; in testGenericLoopCombinator()
/libcore/ojluni/src/main/java/java/lang/invoke/
DTransformers.java2972 final MethodHandle[] preds; field in Transformers.Loop
2996 preds = fpred; in Loop()
3018 boolean keepGoing = doPredicate(preds[i], callerFrame, loopVarsFrame); in transform()