Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/api1/client2/
DJpegProcessor.cpp280 size_t heapSize = mCaptureHeap->getSize(); in processNewCapture() local
281 if (jpegSize > heapSize) { in processNewCapture()
284 __FUNCTION__, jpegSize, heapSize); in processNewCapture()
285 jpegSize = heapSize; in processNewCapture()
/frameworks/native/libs/binder/
DIMemory.cpp191 size_t heapSize = mHeap->getSize(); in getMemory() local
192 if (s <= heapSize in getMemory()
194 && (static_cast<size_t>(o) <= heapSize - s)) { in getMemory()
/frameworks/native/services/inputflinger/
DInputReader.cpp6355 uint32_t heapSize = 0; in assignPointerIds() local
6371 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 …]
/frameworks/av/services/audioflinger/
DAudioFlinger.cpp1417 size_t heapSize = kClientSharedHeapSizeBytes; in Client() local
1421 heapSize *= kClientSharedHeapSizeMultiplier; in Client()
1423 mMemoryDealer = new MemoryDealer(heapSize, "AudioFlinger::Client"); in Client()