Home
last modified time | relevance | path

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

12

/hardware/google/aemu/base/include/aemu/base/memory/
DContiguousRangeMapper.h33 ContiguousRangeMapper(Func&& mapFunc, uintptr_t batchSize = 0) :
34 mMapFunc(std::move(mapFunc)), mBatchSize(batchSize) { } in mMapFunc()
/hardware/qcom/sm8150/gps/batching/
DBatchingAdapter.h141 void setBatchSize(size_t batchSize) { mBatchSize = batchSize; } in setBatchSize() argument
143 void setTripBatchSize(size_t batchSize) { mTripBatchSize = batchSize; } in setTripBatchSize() argument
DBatchingAdapter.cpp74 uint32_t batchSize = 0; in readConfigCommand() local
78 {"BATCH_SIZE", &batchSize, NULL, 'n'}, in readConfigCommand()
86 __func__, batchSize, tripBatchSize, batchingAccuracy, batchingTimeout); in readConfigCommand()
88 mAdapter.setBatchSize(batchSize); in readConfigCommand()
/hardware/qcom/sm7250/gps/batching/
DBatchingAdapter.h141 void setBatchSize(size_t batchSize) { mBatchSize = batchSize; } in setBatchSize() argument
143 void setTripBatchSize(size_t batchSize) { mTripBatchSize = batchSize; } in setTripBatchSize() argument
DBatchingAdapter.cpp74 uint32_t batchSize = 0; in readConfigCommand() local
78 {"BATCH_SIZE", &batchSize, NULL, 'n'}, in readConfigCommand()
86 __func__, batchSize, tripBatchSize, batchingAccuracy, batchingTimeout); in readConfigCommand()
88 mAdapter.setBatchSize(batchSize); in readConfigCommand()
/hardware/qcom/sm7150/gps/batching/
DBatchingAdapter.h141 void setBatchSize(size_t batchSize) { mBatchSize = batchSize; } in setBatchSize() argument
143 void setTripBatchSize(size_t batchSize) { mTripBatchSize = batchSize; } in setTripBatchSize() argument
DBatchingAdapter.cpp73 uint32_t batchSize = 0; in readConfigCommand() local
77 {"BATCH_SIZE", &batchSize, NULL, 'n'}, in readConfigCommand()
85 __func__, batchSize, tripBatchSize, batchingAccuracy, batchingTimeout); in readConfigCommand()
87 mAdapter.setBatchSize(batchSize); in readConfigCommand()
/hardware/qcom/sm8150p/gps/batching/
DBatchingAdapter.h141 void setBatchSize(size_t batchSize) { mBatchSize = batchSize; } in setBatchSize() argument
143 void setTripBatchSize(size_t batchSize) { mTripBatchSize = batchSize; } in setTripBatchSize() argument
DBatchingAdapter.cpp73 uint32_t batchSize = 0; in readConfigCommand() local
77 {"BATCH_SIZE", &batchSize, NULL, 'n'}, in readConfigCommand()
85 __func__, batchSize, tripBatchSize, batchingAccuracy, batchingTimeout); in readConfigCommand()
87 mAdapter.setBatchSize(batchSize); in readConfigCommand()
/hardware/qcom/sm8150/gps/android/2.1/location_api/
DBatchingAPIClient.cpp87 int batchSize = locAPIGetBatchSize(); in getBatchSize() local
88 LOC_LOGd("batchSize: %d", batchSize); in getBatchSize()
89 return batchSize; in getBatchSize()
/hardware/qcom/sm8150/gps/android/2.0/location_api/
DBatchingAPIClient.cpp87 int batchSize = locAPIGetBatchSize(); in getBatchSize() local
88 LOC_LOGd("batchSize: %d", batchSize); in getBatchSize()
89 return batchSize; in getBatchSize()
/hardware/qcom/sm7250/gps/android/2.1/location_api/
DBatchingAPIClient.cpp86 int batchSize = locAPIGetBatchSize(); in getBatchSize() local
87 LOC_LOGd("batchSize: %d", batchSize); in getBatchSize()
88 return batchSize; in getBatchSize()
/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()
/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/sm8150/media/mm-core/inc/
DOMX_QCOMExtns.h2204 static int getNumFdsForBatch(int batchSize) { in getNumFdsForBatch()
2205 return batchSize; in getNumFdsForBatch()
2207 static int getNumIntsForBatch(int batchSize) { in getNumIntsForBatch()
2208 return batchSize * INT_TOTAL; in getNumIntsForBatch()
/hardware/interfaces/camera/device/default/
DExternalCameraUtils.cpp711 const uint32_t batchSize = DCTSIZE * maxVSampFactor; in encodeJpegYU12() local
716 uint32_t done = jpeg_write_raw_data(&cinfo, planes, batchSize); in encodeJpegYU12()
718 if (done != batchSize) { in encodeJpegYU12()
720 batchSize, cinfo.next_scanline, cinfo.image_height); in encodeJpegYU12()
/hardware/interfaces/camera/device/3.4/default/
DExternalCameraUtils.cpp567 const uint32_t batchSize = DCTSIZE * maxVSampFactor; in encodeJpegYU12() local
573 uint32_t done = jpeg_write_raw_data(&cinfo, planes, batchSize); in encodeJpegYU12()
575 if (done != batchSize) { in encodeJpegYU12()
577 __FUNCTION__, done, batchSize, cinfo.next_scanline, in encodeJpegYU12()
/hardware/qcom/sm7250/media/mm-core/inc/
DOMX_QCOMExtns.h2322 static int getNumFdsForBatch(int batchSize) { in getNumFdsForBatch()
2323 return batchSize; in getNumFdsForBatch()
2325 static int getNumIntsForBatch(int batchSize) { in getNumIntsForBatch()
2326 return batchSize * INT_TOTAL; in getNumIntsForBatch()
/hardware/interfaces/camera/device/1.0/default/
DCameraDevice.cpp466 uint32_t batchSize = 0; in handleCallbackTimestamp() local
469 batchSize = mBatchSize; in handleCallbackTimestamp()
472 if (batchSize == 0) { // non-batch mode in handleCallbackTimestamp()
488 if (mInflightBatch.size() >= batchSize) { in handleCallbackTimestamp()

12