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

  /external/chromium_org/third_party/opus/src/silk/
resampler_structs.h 46 opus_int batchSize;
resampler_private_IIR_FIR.c 78 ALLOC( buf, 2 * S->batchSize + RESAMPLER_ORDER_FIR_12, opus_int16 );
86 nSamplesIn = silk_min( inLen, S->batchSize );
resampler_private_down_FIR.c 159 ALLOC( buf, S->batchSize + S->FIR_Order, opus_int32 );
169 nSamplesIn = silk_min( inLen, S->batchSize );
resampler.c 111 S->batchSize = S->Fs_in_kHz * RESAMPLER_MAX_BATCH_SIZE_MS;
  /external/libopus/silk/
resampler_structs.h 46 opus_int batchSize;
resampler_private_IIR_FIR.c 78 ALLOC( buf, 2 * S->batchSize + RESAMPLER_ORDER_FIR_12, opus_int16 );
86 nSamplesIn = silk_min( inLen, S->batchSize );
resampler_private_down_FIR.c 159 ALLOC( buf, S->batchSize + S->FIR_Order, opus_int32 );
169 nSamplesIn = silk_min( inLen, S->batchSize );
resampler.c 111 S->batchSize = S->Fs_in_kHz * RESAMPLER_MAX_BATCH_SIZE_MS;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
BatchingNamedTaskExecutor.java 62 * @param batchSize the maximum number of entries to execute.
64 public void executeNextBatch(int batchSize) {
67 int count = Math.min(mQueuedTasks.size(), batchSize);
  /packages/apps/Exchange/src/com/android/exchange/utility/
WbxmlResponseLogger.java 59 protected static byte[] getContentAsByteArray(InputStream is, int batchSize)
63 final byte[] data = new byte[batchSize];
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlarmScheduler.java 111 int batchSize, long currentMillis) {
118 context.getContentResolver(), alarmManager, batchSize, currentMillis);
178 int batchSize, long currentMillis) {
200 while (index++ < batchSize && instancesCursor.moveToNext()) {
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_mdpcomp.cpp 554 //TODO BatchSize could be optimized further based on available pipes, split
556 const int batchSize = numAppLayers - (sMaxPipesPerMixer - 1);
557 if(batchSize <= 0) {
565 for(int i = 0; i <= numAppLayers - batchSize; i++) {
567 for(int j = i; j < i + batchSize; j++) {
581 ALOGD_IF(isDebug(), "%s: No batch found batchSize %d numAppLayers %d",
582 __FUNCTION__, batchSize, numAppLayers);
587 if(i < minBatchStart || i >= minBatchStart + batchSize) {
599 mCurrentFrame.fbCount = batchSize;
600 mCurrentFrame.mdpCount = mCurrentFrame.layerCount - batchSize;
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlarmSchedulerTest.java 302 int batchSize = 5;
316 AlarmScheduler.scheduleNextAlarm(mIsolatedContext, mMockAlarmManager, 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/Launcher2/src/com/android/launcher2/
LauncherModel.java     [all...]
  /frameworks/native/services/inputflinger/
InputReader.cpp 324 size_t batchSize = 1;
327 while (batchSize < count) {
328 if (rawEvent[batchSize].type >= EventHubInterface::FIRST_SYNTHETIC_EVENT
329 || rawEvent[batchSize].deviceId != deviceId) {
332 batchSize += 1;
335 ALOGD("BatchSize: %d Count: %d", batchSize, count);
337 processEventsForDeviceLocked(deviceId, rawEvent, batchSize);
354 count -= batchSize;
355 rawEvent += batchSize;
    [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar 

Completed in 482 milliseconds