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

/frameworks/base/core/java/android/hardware/camera2/params/
H A DBlackLevelPattern.java32 public static final int COUNT = 4; field in class:BlackLevelPattern
51 if (offsets.length < COUNT) {
54 mCfaOffsets = Arrays.copyOf(offsets, COUNT);
78 * @param destination an array big enough to hold at least {@value #COUNT} elements after the
91 if (destination.length - offset < COUNT) {
94 for (int i = 0; i < COUNT; ++i) {
H A DColorSpaceTransform.java45 private static final int COUNT = ROWS * COLUMNS; field in class:ColorSpaceTransform
74 if (elements.length != COUNT) {
75 throw new IllegalArgumentException("elements must be " + COUNT + " length");
165 if (destination.length - offset < COUNT) {
169 for (int i = 0, j = 0; i < COUNT; ++i, j += RATIONAL_SIZE) {
228 for (int i = 0, j = 0; i < COUNT; ++i, j += RATIONAL_SIZE) {
H A DRggbChannelVector.java28 public static final int COUNT = 4; field in class:RggbChannelVector
108 * @param colorChannel greater or equal to {@code 0} and less than {@link #COUNT}
114 if (colorChannel < 0 || colorChannel >= COUNT) {
136 * an array big enough to hold at least {@value #COUNT} elements after the
149 if (destination.length - offset < COUNT) {
/frameworks/base/core/java/android/hardware/
H A DLegacySensorManager.java370 private static final int COUNT = 12; field in class:LegacySensorManager.LmsFilter
372 private static final float PREDICTION_TIME = (SENSORS_RATE_MS*COUNT/1000.0f)*PREDICTION_RATIO;
373 private float mV[] = new float[COUNT*2];
374 private long mT[] = new long[COUNT*2];
378 mIndex = COUNT;
391 * by COUNT values, so that we don't have to copy the array
395 if (mIndex >= COUNT*2)
396 mIndex = COUNT;
399 mV[mIndex-COUNT] = v;
400 mT[mIndex-COUNT]
[all...]
/frameworks/base/obex/javax/obex/
H A DHeaderSet.java52 * The value of <code>COUNT</code> is 0xC0 (192).
54 public static final int COUNT = 0xC0; field in class:HeaderSet
296 case COUNT:
514 case COUNT:
580 out.write(COUNT);

Completed in 196 milliseconds