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

  /frameworks/base/include/androidfw/
VelocityTracker.h 173 static const uint32_t HISTORY_SIZE = 20;
190 Movement mMovements[HISTORY_SIZE];
248 static const uint32_t HISTORY_SIZE = 20;
264 Movement mMovements[HISTORY_SIZE];
  /frameworks/base/libs/androidfw/
VelocityTracker.cpp 356 const uint32_t LeastSquaresVelocityTrackerStrategy::HISTORY_SIZE;
379 if (++mIndex == HISTORY_SIZE) {
563 float x[HISTORY_SIZE];
564 float y[HISTORY_SIZE];
565 float w[HISTORY_SIZE];
566 float time[HISTORY_SIZE];
586 index = (index == 0 ? HISTORY_SIZE : index) - 1;
587 } while (++m < HISTORY_SIZE);
636 uint32_t nextIndex = (index + 1) % HISTORY_SIZE;
813 const uint32_t LegacyVelocityTrackerStrategy::HISTORY_SIZE;
    [all...]
  /frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp 89 #define HISTORY_SIZE 100
370 mBufferHead = tick - HISTORY_SIZE;
374 if (tick - mBufferHead > HISTORY_SIZE) {
376 mBufferHead = tick - HISTORY_SIZE;
  /external/grub/stage2/
shared.h 114 #define HISTORY_SIZE 5
115 #define HISTORY_BUFLEN (MAX_CMDLINE * HISTORY_SIZE)
  /frameworks/base/core/java/android/widget/
Editor.java     [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 

Completed in 1017 milliseconds