Home
last modified time | relevance | path

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

/frameworks/av/media/libaudioclient/tests/
Dtest_create_audiotrack.cpp91 size_t heapSize = audio_channel_count_from_out_mask(channelMask) * in testTrack() local
93 heap = new MemoryDealer(heapSize, "AudioTrack Heap Base"); in testTrack()
94 sharedBuffer = heap->allocate(heapSize); in testTrack()
/frameworks/av/services/camera/libcameraservice/api1/client2/
DJpegProcessor.cpp289 size_t heapSize = mCaptureHeap->getSize(); in processNewCapture() local
290 if (jpegSize > heapSize) { in processNewCapture()
293 __FUNCTION__, jpegSize, heapSize); in processNewCapture()
294 jpegSize = heapSize; in processNewCapture()
/frameworks/av/media/libstagefright/
DACodecBufferChannel.cpp296 sp<MemoryDealer> ACodecBufferChannel::makeMemoryDealer(size_t heapSize) { in makeMemoryDealer() argument
301 dealer = new MemoryDealer(heapSize, "ACodecBufferChannel"); in makeMemoryDealer()
338 size_t heapSize = totalSize + destinationBufferSize; in setInputBufferArray() local
339 if (heapSize > 0) { in setInputBufferArray()
340 mDealer = makeMemoryDealer(heapSize); in setInputBufferArray()
/frameworks/native/libs/binder/
DIMemory.cpp196 size_t heapSize = mHeap->getSize(); in getMemory() local
197 if (s <= heapSize in getMemory()
199 && (static_cast<size_t>(o) <= heapSize - s)) { in getMemory()
/frameworks/av/media/libstagefright/include/
DACodecBufferChannel.h136 sp<MemoryDealer> makeMemoryDealer(size_t heapSize);