HomeSort by relevance Sort by last modified time
    Searched defs:batchSize (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/opus/src/silk/
resampler_structs.h 43 opus_int batchSize;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppReceiver.java 105 int batchSize = mOppManager.getBatchSize();
107 toastMsg = context.getString(R.string.bt_toast_5, Integer.toString(batchSize),
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlarmSchedulerTest.java 302 int batchSize = 5;
316 AlarmScheduler.scheduleNextAlarm(mIsolatedContext, mMockAlarmManager, batchSize,
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_mdpcomp.cpp 533 //TODO BatchSize could be optimized further based on available pipes, split
535 const int batchSize = numAppLayers - (sMaxPipesPerMixer - 1);
536 if(batchSize <= 0) {
544 for(int i = 0; i <= numAppLayers - batchSize; i++) {
546 for(int j = i; j < i + batchSize; j++) {
560 ALOGD_IF(isDebug(), "%s: No batch found batchSize %d numAppLayers %d",
561 __FUNCTION__, batchSize, numAppLayers);
566 if(i < minBatchStart || i >= minBatchStart + batchSize) {
578 mCurrentFrame.fbCount = batchSize;
579 mCurrentFrame.mdpCount = mCurrentFrame.layerCount - batchSize;
    [all...]
  /frameworks/base/services/input/
InputReader.cpp 313 size_t batchSize = 1;
316 while (batchSize < count) {
317 if (rawEvent[batchSize].type >= EventHubInterface::FIRST_SYNTHETIC_EVENT
318 || rawEvent[batchSize].deviceId != deviceId) {
321 batchSize += 1;
324 ALOGD("BatchSize: %d Count: %d", batchSize, count);
326 processEventsForDeviceLocked(deviceId, rawEvent, batchSize);
343 count -= batchSize;
344 rawEvent += batchSize;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java     [all...]

Completed in 126 milliseconds