Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/util/
DOldAndroidHashMapTest.java120 int slot = 0; in testKeyIterator() local
123 slot = 0; in testKeyIterator()
125 slot = 1; in testKeyIterator()
127 slot = 2; in testKeyIterator()
129 slot = 3; in testKeyIterator()
134 if (slots[slot]) { in testKeyIterator()
137 slots[slot] = true; in testKeyIterator()
155 int slot = 0; in testValueIterator() local
158 slot = 0; in testValueIterator()
160 slot = 1; in testValueIterator()
[all …]
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodTypeForm.java223 int slot = ptypeCount + lac; in MethodTypeForm() local
224 slotToArgTab = new int[slot+1]; in MethodTypeForm()
226 argToSlotTab[0] = slot; // argument "-1" is past end of slots in MethodTypeForm()
230 if (w.isDoubleWord()) --slot; in MethodTypeForm()
231 --slot; in MethodTypeForm()
232 slotToArgTab[slot] = i+1; // "+1" see argSlotToParameter note in MethodTypeForm()
233 argToSlotTab[1+i] = slot; in MethodTypeForm()
235 assert(slot == 0); // filled the table in MethodTypeForm()
244 int slot = ptypeCount; // first arg is deepest in stack in MethodTypeForm() local
245 slotToArgTab = new int[slot+1]; in MethodTypeForm()
[all …]
/libcore/ojluni/src/main/java/java/util/concurrent/
DExchanger.java340 private volatile Node slot; field in Exchanger
459 if ((q = slot) != null) { in slotExchange()
496 else if (slot != p) in slotExchange()
502 if (slot == p) in slotExchange()