Home
last modified time | relevance | path

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

/external/skia/src/gpu/vk/
DGrVkMemory.cpp548 VkDeviceSize heapSize = fSubHeaps[i]->largestBlockSize(); in subAlloc() local
549 if (heapSize >= alignedSize && heapSize < bestFitSize) { in subAlloc()
551 bestFitSize = heapSize; in subAlloc()
596 VkDeviceSize heapSize = fSubHeaps[i]->size(); in singleAlloc() local
597 if (heapSize >= alignedSize && heapSize < bestFitSize) { in singleAlloc()
599 bestFitSize = heapSize; in singleAlloc()
/external/guava/guava-tests/test/com/google/common/collect/
DMinMaxPriorityQueueTest.java186 int heapSize = 999; in testHeapIntact() local
189 MinMaxPriorityQueue.expectedSize(heapSize).create(); in testHeapIntact()
196 for (int i = 0; i < heapSize; i++) { in testHeapIntact()
201 assertTrue("MinMaxHeap not intact after " + heapSize + " insertions", in testHeapIntact()
203 assertEquals(heapSize, mmHeap.size()); in testHeapIntact()
204 int currentHeapSize = heapSize; in testHeapIntact()
548 int heapSize = 999; in testRemoveAt() local
551 MinMaxPriorityQueue.expectedSize(heapSize).create(); in testRemoveAt()
552 for (int i = 0; i < heapSize; i++) { in testRemoveAt()