Searched refs:intermediate (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/java/lang/invoke/
H A DVarHandle.java1545 Class<?>... intermediate) {
1550 ps = allocateParameters(0, receiver, intermediate);
1551 fillParameters(ps, receiver, intermediate);
1554 ps = allocateParameters(1, receiver, intermediate);
1555 i = fillParameters(ps, receiver, intermediate);
1559 ps = allocateParameters(2, receiver, intermediate);
1560 i = fillParameters(ps, receiver, intermediate);
1565 ps = allocateParameters(2, receiver, intermediate);
1566 i = fillParameters(ps, receiver, intermediate);
1571 ps = allocateParameters(1, receiver, intermediate);
1544 accessModeType(Class<?> receiver, Class<?> value, Class<?>... intermediate) argument
1580 allocateParameters(int values, Class<?> receiver, Class<?>... intermediate) argument
1586 fillParameters(Class<?>[] ps, Class<?> receiver, Class<?>... intermediate) argument
[all...]
H A DTypeConvertingMethodAdapter.java260 String intermediate;
263 intermediate = "java/lang/Number";
266 intermediate = wrapperName(wTarget);
268 cast(dSrc, intermediate);
269 unbox(intermediate, wTarget);
H A DVarForm.java46 VarForm(Class<?> implClass, Class<?> receiver, Class<?> value, Class<?>... intermediate) { argument
56 for (Class<?> c : intermediate)
/openjdk9/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DServerCompilerScheduler.java393 Vector<BlockIntermediate> intermediate = new Vector<>(graph.getBlocks().size());
407 intermediate.add(bi);
415 intermediate.get(0).dominator = 0;
420 BlockIntermediate ib = intermediate.get(index);
438 int curIndex = eval(predIndex, intermediate);
439 BlockIntermediate curBlock = intermediate.get(curIndex);
450 link(block.parent, block_index, intermediate);
451 BlockIntermediate parentBlock = intermediate.get(block.parent);
455 int newIndex = eval(curIndex, intermediate);
456 BlockIntermediate curBlock = intermediate
[all...]
/openjdk9/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DCPValidatorIntermediate.java261 private static void validate(String intermediate) argument
264 CertPath path = generateCertificatePath(intermediate);
/openjdk9/jdk/src/java.base/share/classes/com/sun/crypto/provider/
H A DDHKeyAgreement.java172 * @return the (intermediate) key resulting from this phase, or null if
213 // intermediate secret, in which case we wrap it into a
217 byte[] intermediate = engineGenerateSecret();
218 return new DHPublicKey(new BigInteger(1, intermediate),
/openjdk9/jdk/src/java.base/share/classes/java/util/stream/
H A DCollectors.java397 * @param <A> intermediate accumulation type of the downstream collector
439 * @param <A> intermediate accumulation type of the downstream collector
490 * @param <A> intermediate accumulation type of the downstream collector
524 * @param <A> intermediate accumulation type of the downstream collector
690 * @param intermediateSum the high-order and low-order words of the intermediate sum
1005 * @param <A> the intermediate accumulation type of the downstream collector
1055 * @param <A> the intermediate accumulation type of the downstream collector
1089 Function<Map<K, A>, M> finisher = intermediate -> {
1090 intermediate.replaceAll((k, v) -> downstreamFinisher.apply(v));
1092 M castResult = (M) intermediate;
[all...]

Completed in 137 milliseconds