Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DArrayBlockingQueue.java634 final int firstLeg = Math.min(items.length - takeIndex, count); in toArray() local
639 System.arraycopy(items, takeIndex, a, 0, firstLeg); in toArray()
643 if (firstLeg < count) in toArray()
644 System.arraycopy(items, 0, a, firstLeg, putIndex); in toArray()