Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DEventLoop.common.kt308 … val newQueue = Queue<Runnable>(Queue.INITIAL_CAPACITY, singleConsumer = true) in enqueueImpl() constant
309 newQueue.addLast(queue as Runnable) in enqueueImpl()
310 newQueue.addLast(task) in enqueueImpl()
311 if (_queue.compareAndSet(queue, newQueue)) return true in enqueueImpl()
349 … val newQueue = Queue<Runnable>(Queue.INITIAL_CAPACITY, singleConsumer = true) in closeQueue() constant
350 newQueue.addLast(queue as Runnable) in closeQueue()
351 if (_queue.compareAndSet(queue, newQueue)) return in closeQueue()
/external/guava/guava/src/com/google/common/collect/
DMinMaxPriorityQueue.java937 Object[] newQueue = new Object[newCapacity]; in growIfNeeded() local
938 System.arraycopy(queue, 0, newQueue, 0, queue.length); in growIfNeeded()
939 queue = newQueue; in growIfNeeded()
/external/guava/android/guava/src/com/google/common/collect/
DMinMaxPriorityQueue.java937 Object[] newQueue = new Object[newCapacity]; in growIfNeeded() local
938 System.arraycopy(queue, 0, newQueue, 0, queue.length); in growIfNeeded()
939 queue = newQueue; in growIfNeeded()