Home
last modified time | relevance | path

Searched refs:outargs (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/test/java/lang/invoke/
DMethodHandlesPermuteArgumentsTest.java82 for (int outargs = 0; outargs <= max; outargs++) { in testPermuteArguments()
83 if (outargs - inargs >= MAX_ARG_INCREASE) continue; in testPermuteArguments()
89 testPermuteArguments(args, types, outargs, numcases, casStep); in testPermuteArguments()
91 if (CAN_TEST_LIGHTLY && outargs < max-2) continue; in testPermuteArguments()
92 if (dilution > 10 && outargs >= 4) { in testPermuteArguments()
94 int[] reorder = new int[outargs]; in testPermuteArguments()
102 for (int j = 1; j < outargs; j += 2) in testPermuteArguments()
111 for (int j = 0; j < outargs; j++) in testPermuteArguments()
125 int outargs, int numcases, int casStep) throws Throwable { in testPermuteArguments() argument
127 int[] reorder = new int[outargs]; in testPermuteArguments()
[all …]
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodHandles.java3209 int outargs = oldType.parameterCount(); in insertArgumentsChecks() local
3210 int inargs = outargs - insCount; in insertArgumentsChecks()
3291 int outargs = oldType.parameterCount(); in dropArgumentChecks() local
3292 int inargs = outargs + dropped; in dropArgumentChecks()
3293 if (pos < 0 || pos > outargs) in dropArgumentChecks()
3295 + Arrays.asList(oldType, pos, valueTypes, inargs, outargs) in dropArgumentChecks()