Lines Matching refs:count

241 int QCameraMemory::alloc(int count, int size, int heap_id, uint32_t secure_mode)  in alloc()  argument
249 int new_bufCnt = mBufferCount + count; in alloc()
649 int QCameraHeapMemory::allocate(int count, int size, uint32_t isSecure) in allocate() argument
655 rc = alloc(count, size, heap_mask, SECURE); in allocate()
660 rc = alloc(count, size, heap_mask, NON_SECURE); in allocate()
664 for (int i = 0; i < count; i ++) { in allocate()
682 mBufferCount = count; in allocate()
700 int QCameraHeapMemory::allocateMore(int count, int size) in allocateMore() argument
703 int rc = alloc(count, size, heap_mask, NON_SECURE); in allocateMore()
707 for (int i = mBufferCount; i < count + mBufferCount; i ++) { in allocateMore()
724 mBufferCount += count; in allocateMore()
879 int QCameraStreamMemory::allocate(int count, int size, uint32_t isSecure) in allocate() argument
882 int rc = alloc(count, size, heap_mask, isSecure); in allocate()
886 for (int i = 0; i < count; i ++) { in allocate()
893 mBufferCount = count; in allocate()
910 int QCameraStreamMemory::allocateMore(int count, int size) in allocateMore() argument
913 int rc = alloc(count, size, heap_mask, NON_SECURE); in allocateMore()
917 for (int i = mBufferCount; i < mBufferCount + count; i++) { in allocateMore()
920 mBufferCount += count; in allocateMore()
1097 int QCameraVideoMemory::allocate(int count, int size, uint32_t isSecure) in allocate() argument
1099 int rc = QCameraStreamMemory::allocate(count, size, isSecure); in allocate()
1103 for (int i = 0; i < count; i ++) { in allocate()
1123 mBufferCount = count; in allocate()
1140 int QCameraVideoMemory::allocateMore(int count, int size) in allocateMore() argument
1142 int rc = QCameraStreamMemory::allocateMore(count, size); in allocateMore()
1146 for (int i = mBufferCount; i < count + mBufferCount; i ++) { in allocateMore()
1168 mBufferCount += count; in allocateMore()
1389 int QCameraGrallocMemory::allocate(int count, int /*size*/, uint32_t /*isSecure*/) in allocate() argument
1413 err = mWindow->set_buffer_count(mWindow, count); in allocate()
1450 for (int cnt = 0; cnt < count; cnt++) { in allocate()
1544 mBufferCount = count; in allocate()