Searched refs:heapSize (Results 1 – 4 of 4) sorted by relevance
280 size_t heapSize = mCaptureHeap->getSize(); in processNewCapture() local281 if (jpegSize > heapSize) { in processNewCapture()284 __FUNCTION__, jpegSize, heapSize); in processNewCapture()285 jpegSize = heapSize; in processNewCapture()
191 size_t heapSize = mHeap->getSize(); in getMemory() local192 if (s <= heapSize in getMemory()194 && (static_cast<size_t>(o) <= heapSize - s)) { in getMemory()
6355 uint32_t heapSize = 0; in assignPointerIds() local6371 heap[heapSize].currentPointerIndex = currentPointerIndex; in assignPointerIds()6372 heap[heapSize].lastPointerIndex = lastPointerIndex; in assignPointerIds()6373 heap[heapSize].distance = distance; in assignPointerIds()6374 heapSize += 1; in assignPointerIds()6380 for (uint32_t startIndex = heapSize / 2; startIndex != 0; ) { in assignPointerIds()6384 if (childIndex >= heapSize) { in assignPointerIds()6388 if (childIndex + 1 < heapSize in assignPointerIds()6403 ALOGD("assignPointerIds - initial distance min-heap: size=%d", heapSize); in assignPointerIds()6404 for (size_t i = 0; i < heapSize; i++) { in assignPointerIds()[all …]
1417 size_t heapSize = kClientSharedHeapSizeBytes; in Client() local1421 heapSize *= kClientSharedHeapSizeMultiplier; in Client()1423 mMemoryDealer = new MemoryDealer(heapSize, "AudioFlinger::Client"); in Client()