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

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DJpegProcessor.cpp285 size_t heapSize = mCaptureHeap->getSize(); local
286 if (jpegSize > heapSize) {
289 __FUNCTION__, jpegSize, heapSize);
290 jpegSize = heapSize;
/frameworks/native/libs/binder/
H A DIMemory.cpp196 size_t heapSize = mHeap->getSize(); local
197 if (s <= heapSize
199 && (static_cast<size_t>(o) <= heapSize - s)) {
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp1497 size_t heapSize = property_get_int32("ro.af.client_heap_size_kbyte", 0); local
1498 heapSize *= 1024;
1499 if (!heapSize) {
1500 heapSize = kClientSharedHeapSizeBytes;
1504 heapSize *= kClientSharedHeapSizeMultiplier;
1507 mMemoryDealer = new MemoryDealer(heapSize, "AudioFlinger::Client");
/frameworks/native/services/inputflinger/
H A DInputReader.cpp6461 uint32_t heapSize = 0; local
6477 heap[heapSize].currentPointerIndex = currentPointerIndex;
6478 heap[heapSize].lastPointerIndex = lastPointerIndex;
6479 heap[heapSize].distance = distance;
6480 heapSize += 1;
6486 for (uint32_t startIndex = heapSize / 2; startIndex != 0; ) {
6490 if (childIndex >= heapSize) {
6494 if (childIndex + 1 < heapSize
6509 ALOGD("assignPointerIds - initial distance min-heap: size=%d", heapSize);
6510 for (size_t i = 0; i < heapSize;
[all...]

Completed in 320 milliseconds