Home
last modified time | relevance | path

Searched refs:batchSize (Results 1 – 16 of 16) sorted by relevance

/hardware/qcom/camera/msm8998/QCamera2/HAL3/
DQCamera3Stream.cpp379 uint32_t batchSize, in init() argument
388 LOGD("batch size is %d", batchSize); in init()
456 } else if (batchSize) { in init()
457 if (batchSize > MAX_BATCH_SIZE) { in init()
458 LOGE("batchSize:%d is very large", batchSize); in init()
463 mNumBatchBufs = MAX_INFLIGHT_HFR_REQUESTS / batchSize; in init()
465 mStreamInfo->user_buf_info.frame_buf_cnt = batchSize; in init()
472 LOGD("batch size is %d", batchSize); in init()
506 mBatchSize = batchSize; in init()
DQCamera3Stream.h73 uint32_t batchSize,
DQCamera3Channel.h155 uint32_t batchSize = 0);
315 virtual int32_t setBatchSize(uint32_t batchSize);
DQCamera3Channel.cpp171 uint32_t batchSize) in addStream() argument
195 LOGD("batch size is %d", batchSize); in addStream()
198 NULL, minStreamBufNum, postprocessMask, isType, batchSize, in addStream()
290 int32_t QCamera3Channel::setBatchSize(uint32_t batchSize) in setBatchSize() argument
292 LOGD("Dummy method. batchSize: %d unused ", batchSize); in setBatchSize()
2070 int32_t QCamera3RegularChannel::setBatchSize(uint32_t batchSize) in setBatchSize() argument
2074 mBatchSize = batchSize; in setBatchSize()
DQCamera3HWI.cpp6847 uint8_t batchSize = mBatchSize; in captureResultCb() local
6849 if (batchSize) { in captureResultCb()
/hardware/interfaces/camera/device/3.2/default/
DCameraDeviceSession.h194 void registerBatch(uint32_t frameNumber, uint32_t batchSize);
215 BufferBatch(uint32_t batchSize) { in BufferBatch()
216 mBuffers.reserve(batchSize); in BufferBatch()
DCameraDeviceSession.cpp416 void CameraDeviceSession::ResultBatcher::registerBatch(uint32_t frameNumber, uint32_t batchSize) { in registerBatch() argument
419 batch->mBatchSize = batchSize; in registerBatch()
535 size_t batchSize = 0; in sendBatchBuffersLocked() local
543 if (bb.mBuffers.size() > batchSize) { in sendBatchBuffersLocked()
544 batchSize = bb.mBuffers.size(); in sendBatchBuffersLocked()
552 if (batchSize == 0) { in sendBatchBuffersLocked()
567 results.resize(batchSize); in sendBatchBuffersLocked()
568 for (size_t i = 0; i < batchSize; i++) { in sendBatchBuffersLocked()
/hardware/interfaces/gnss/1.0/
DIGnssBatching.hal92 * @return batchSize number of location objects supported per batch
94 getBatchSize() generates (uint16_t batchSize);
/hardware/qcom/media/msm8998/mm-core/inc/
DOMX_QCOMExtns.h2100 static int getNumFdsForBatch(int batchSize) { in getNumFdsForBatch()
2101 return batchSize; in getNumFdsForBatch()
2103 static int getNumIntsForBatch(int batchSize) { in getNumIntsForBatch()
2104 return batchSize * INT_TOTAL; in getNumIntsForBatch()
/hardware/qcom/sdm845/media/mm-core/inc/
DOMX_QCOMExtns.h2136 static int getNumFdsForBatch(int batchSize) { in getNumFdsForBatch()
2137 return batchSize; in getNumFdsForBatch()
2139 static int getNumIntsForBatch(int batchSize) { in getNumIntsForBatch()
2140 return batchSize * INT_TOTAL; in getNumIntsForBatch()
/hardware/interfaces/camera/device/1.0/default/
DCameraDevice.cpp461 uint32_t batchSize = 0; in handleCallbackTimestamp() local
464 batchSize = mBatchSize; in handleCallbackTimestamp()
467 if (batchSize == 0) { // non-batch mode in handleCallbackTimestamp()
483 if (mInflightBatch.size() >= batchSize) { in handleCallbackTimestamp()
/hardware/interfaces/camera/device/3.4/default/
DExternalCameraDeviceSession.cpp1511 const uint32_t batchSize = DCTSIZE * maxVSampFactor; in encodeJpegYU12() local
1517 uint32_t done = jpeg_write_raw_data(&cinfo, planes, batchSize); in encodeJpegYU12()
1519 if (done != batchSize) { in encodeJpegYU12()
1521 __FUNCTION__, done, batchSize, cinfo.next_scanline, in encodeJpegYU12()
/hardware/interfaces/neuralnetworks/1.2/
Dtypes.hal2609 * it is set to true, then the input has a shape [maxTime, batchSize,
2610 * inputSize], otherwise the input has a shape [batchSize, maxTime,
2619 * A 2-D tensor of shape [batchSize, fwNumUnits]. Specifies a hidden
2628 * A 2-D tensor of shape [batchSize, bwNumUnits]. Specifies a hidden
2651 * two dimensions are [maxTime, batchSize], otherwise they are set to
2652 * [batchSize, maxTime]. If mergeOutputs is set to true, then the third
2659 * [maxTime, batchSize, bwNumUnits], otherwise the shape is set to
2660 * [batchSize, maxTime, bwNumUnits].
4620 * it is set to 1, then the input has a shape [maxTime, batchSize,
4621 * inputSize], otherwise the input has a shape [batchSize, maxTime,
[all …]
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp7119 bool venc_dev::venc_set_batch_size(OMX_U32 batchSize) in venc_set_batch_size() argument
7125 control.value = batchSize ? V4L2_VIDC_QBUF_BATCHED : V4L2_VIDC_QBUF_STANDARD; in venc_set_batch_size()
7133 mBatchSize = batchSize; in venc_set_batch_size()
/hardware/qcom/sdm845/media/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp7330 bool venc_dev::venc_set_batch_size(OMX_U32 batchSize) in venc_set_batch_size() argument
7336 control.value = batchSize ? V4L2_VIDC_QBUF_BATCHED : V4L2_VIDC_QBUF_STANDARD; in venc_set_batch_size()
7344 mBatchSize = batchSize; in venc_set_batch_size()
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/src/
Dvideo_encoder_device_v4l2.cpp7934 bool venc_dev::venc_set_batch_size(OMX_U32 batchSize) in venc_set_batch_size() argument
7940 control.value = batchSize ? V4L2_VIDC_QBUF_BATCHED : V4L2_VIDC_QBUF_STANDARD; in venc_set_batch_size()
7948 mBatchSize = batchSize; in venc_set_batch_size()