Searched defs:slots (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/sun/invoke/util/
H A DWrapper.java81 static int format(int kind, int size, int slots) { argument
88 assert((slots == 2) ? (size == 64) :
89 (slots == 1) ? (size <= 32) :
91 return kind | (size << SIZE_SHIFT) | (slots << SLOT_SHIFT);
104 static int other(int slots) { return slots << SLOT_SHIFT; } argument
111 /** How many JVM stack slots occupied by the wrapped value? Returns 0 for VOID. */
115 /** Does the wrapped value occupy two JVM stack slots? */

Completed in 67 milliseconds