Searched defs:heapSize (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DJpegProcessor.cpp280 size_t heapSize = mCaptureHeap->getSize(); local
281 if (jpegSize > heapSize) {
284 __FUNCTION__, jpegSize, heapSize);
285 jpegSize = heapSize;
/frameworks/native/libs/binder/
H A DIMemory.cpp191 size_t heapSize = mHeap->getSize(); local
192 if (s <= heapSize
194 && (static_cast<size_t>(o) <= heapSize - s)) {
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp1417 size_t heapSize = kClientSharedHeapSizeBytes; local
1421 heapSize *= kClientSharedHeapSizeMultiplier;
1423 mMemoryDealer = new MemoryDealer(heapSize, "AudioFlinger::Client");
/frameworks/native/services/inputflinger/
H A DInputReader.cpp6355 uint32_t heapSize = 0; local
6371 heap[heapSize].currentPointerIndex = currentPointerIndex;
6372 heap[heapSize].lastPointerIndex = lastPointerIndex;
6373 heap[heapSize].distance = distance;
6374 heapSize += 1;
6380 for (uint32_t startIndex = heapSize / 2; startIndex != 0; ) {
6384 if (childIndex >= heapSize) {
6388 if (childIndex + 1 < heapSize
6403 ALOGD("assignPointerIds - initial distance min-heap: size=%d", heapSize);
6404 for (size_t i = 0; i < heapSize;
[all...]

Completed in 5679 milliseconds