Searched defs:COUNT (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/obex/javax/obex/
H A DHeaderSet.java51 * The value of <code>COUNT</code> is 0xC0 (192).
53 public static final int COUNT = 0xC0; field in class:HeaderSet
254 case COUNT:
447 case COUNT:
507 out.write(COUNT);
/frameworks/base/core/java/android/hardware/
H A DSensorManager.java1811 private static final int COUNT = 12; field in class:SensorManager.LmsFilter
1813 private static final float PREDICTION_TIME = (SENSORS_RATE_MS*COUNT/1000.0f)*PREDICTION_RATIO;
1814 private float mV[] = new float[COUNT*2];
1815 private float mT[] = new float[COUNT*2];
1819 mIndex = COUNT;
1833 * by COUNT values, so that we don't have to copy the array
1837 if (mIndex >= COUNT*2)
1838 mIndex = COUNT;
1841 mV[mIndex-COUNT] = v;
1842 mT[mIndex-COUNT]
[all...]

Completed in 109 milliseconds