Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodType.java144 /*non-public*/ static final int MAX_JVM_ARITY = 255; // this is mandated by the JVM spec. field in MethodType
154 /*non-public*/ static final int MAX_MH_ARITY = MAX_JVM_ARITY-1; // deduct one for mh receiver
187 assert((MAX_JVM_ARITY & (MAX_JVM_ARITY+1)) == 0); in checkSlotCount()
189 if ((count & MAX_JVM_ARITY) != count) in checkSlotCount()