Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/
DThreadLocal.java521 int staleSlot) { in replaceStaleEntry() argument
530 int slotToExpunge = staleSlot; in replaceStaleEntry()
531 for (int i = prevIndex(staleSlot, len); in replaceStaleEntry()
539 for (int i = nextIndex(staleSlot, len); in replaceStaleEntry()
552 tab[i] = tab[staleSlot]; in replaceStaleEntry()
553 tab[staleSlot] = e; in replaceStaleEntry()
556 if (slotToExpunge == staleSlot) in replaceStaleEntry()
565 if (k == null && slotToExpunge == staleSlot) in replaceStaleEntry()
570 tab[staleSlot].value = null; in replaceStaleEntry()
571 tab[staleSlot] = new Entry(key, value); in replaceStaleEntry()
[all …]