Searched refs:batchSize (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/
H A DCameraSource.cpp973 uint32_t batchSize = 0; local
977 batchSize = mInflightBatchSizes[0];
980 if (batchSize == 0) { // return buffers one by one
989 if (mInflightReturnedHandles.size() == batchSize) {
1234 int batchSize = 0; local
1255 ++batchSize;
1271 if (batchSize > 0) {
1273 mInflightBatchSizes.push_back(batchSize);
1275 for (int i = 0; i < batchSize; i++) {
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp3189 size_t batchSize = requests.size(); local
3190 captureRequests.resize(batchSize);
3193 for (size_t i = 0; i < batchSize; i++) {
3213 for (size_t i = 0; i < batchSize; i++) {
3247 if (status == common::V1_0::Status::OK && *numRequestProcessed != batchSize) {
3249 __FUNCTION__, *numRequestProcessed, batchSize);
3676 size_t batchSize = mNextRequests.size(); local
3677 std::vector<camera3_capture_request_t*> requests(batchSize);
3679 for (size_t i = 0; i < batchSize; i++) {
4153 const size_t batchSize local
[all...]
/frameworks/native/services/inputflinger/
H A DInputReader.cpp395 size_t batchSize = 1; local
398 while (batchSize < count) {
399 if (rawEvent[batchSize].type >= EventHubInterface::FIRST_SYNTHETIC_EVENT
400 || rawEvent[batchSize].deviceId != deviceId) {
403 batchSize += 1;
406 ALOGD("BatchSize: %d Count: %d", batchSize, count);
408 processEventsForDeviceLocked(deviceId, rawEvent, batchSize);
425 count -= batchSize;
426 rawEvent += batchSize;

Completed in 354 milliseconds