HomeSort by relevance Sort by last modified time
    Searched refs:COUNT (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /ndk/tests/build/libc_no_atexit/
build.sh 17 COUNT=0
19 COUNT=$(( $COUNT + 1 ))
33 if [ "$COUNT" = 0 ]; then
41 echo "All $COUNT libc.so are ok!"
  /cts/common/util/src/com/android/compatibility/common/util/
ResultUnit.java 38 COUNT,
  /cts/libs/commonutil/src/com/android/cts/util/
ResultUnit.java 39 COUNT,
  /external/qemu/distrib/ext4_utils/src/
test_ext4fixup 3 typeset -i I ITERATIONS PHASE LOC COUNT MAXCOUNT
48 let COUNT="$RANDOM"%"$MAXCOUNT"
54 ext4fixup -d "$PHASE,$LOC,$COUNT" "$NEW_FS_IMAGE" 2>/dev/null
63 echo "$ME: test failed with parameters $PHASE, $LOC, $COUNT"
  /system/extras/ext4_utils/
test_ext4fixup 3 typeset -i I ITERATIONS PHASE LOC COUNT MAXCOUNT
48 let COUNT="$RANDOM"%"$MAXCOUNT"
54 ext4fixup -d "$PHASE,$LOC,$COUNT" "$NEW_FS_IMAGE" 2>/dev/null
63 echo "$ME: test failed with parameters $PHASE, $LOC, $COUNT"
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableBlackLevelPattern.java 32 private static final int SIZE = SIZEOF_INT32 * BlackLevelPattern.COUNT;
42 for (int i = 0; i < BlackLevelPattern.COUNT / 2; ++i) {
43 for (int j = 0; j < BlackLevelPattern.COUNT / 2; ++j) {
51 int[] channelOffsets = new int[BlackLevelPattern.COUNT];
52 for (int i = 0; i < BlackLevelPattern.COUNT; ++i) {
  /frameworks/base/core/java/android/hardware/camera2/params/
BlackLevelPattern.java 32 public static final int COUNT = 4;
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) {
ColorSpaceTransform.java 45 private static final int COUNT = ROWS * COLUMNS;
67 * if the count of {@code elements} is not {@code 9}
74 if (elements.length != COUNT) {
75 throw new IllegalArgumentException("elements must be " + COUNT + " length");
108 * if the count of {@code elements} is not {@code 18}
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) {
RggbChannelVector.java 28 public static final int COUNT = 4;
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) {
LensShadingMap.java 51 * {@code RggbChannelVector.COUNT * rows * columns}
98 return mRows * mColumns * COUNT;
106 * and the color channel must be within the range [0, {@value RggbChannelVector#COUNT}).</p>
129 if (colorChannel < 0 || colorChannel > COUNT) {
137 return mElements[colorChannel + (row * mColumns + column) * COUNT ];
163 final int offset = (row * mColumns + column) * COUNT;
183 * an array big enough to hold at least {@link RggbChannelVector#COUNT}
  /external/chromium_org/third_party/skia/tests/
TSetTest.cpp 20 REPORTER_ASSERT(reporter, set0.count() == 0);
27 REPORTER_ASSERT(reporter, set0.count() == 1);
29 REPORTER_ASSERT(reporter, set0.count() == 1);
36 #define COUNT 1732
49 for (int i = 0; i < COUNT; i++) {
57 REPORTER_ASSERT(reporter, set0.count() == i);
60 REPORTER_ASSERT(reporter, set0.count() == i + 1);
65 for (int i = 0; i < COUNT; i++) {
72 REPORTER_ASSERT(reporter, set0.count() == set1.count());
    [all...]
RecorderTest.cpp 16 #define COUNT(T) + 1
17 static const int kRecordTypes = SK_RECORD_TYPES(COUNT);
18 #undef COUNT
29 int count() const { return fHistogram[T::kType]; } function in class:Tally
32 for (unsigned i = 0; i < record.count(); i++) {
49 REPORTER_ASSERT(r, 1 == tally.count<SkRecords::DrawRect>());
ImageCacheTest.cpp 16 static const int COUNT = 10;
23 SkBitmap bm[COUNT];
26 for (int i = 0; i < COUNT; ++i) {
30 for (int i = 0; i < COUNT; ++i) {
55 for (size_t i = 0; i < COUNT * 100; ++i) {
69 for (int i = 0; i < COUNT; ++i) {
89 static const size_t defLimit = DIM * DIM * 4 * COUNT + 1024; // 1K slop
  /external/skia/tests/
TSetTest.cpp 20 REPORTER_ASSERT(reporter, set0.count() == 0);
27 REPORTER_ASSERT(reporter, set0.count() == 1);
29 REPORTER_ASSERT(reporter, set0.count() == 1);
36 #define COUNT 1732
49 for (int i = 0; i < COUNT; i++) {
57 REPORTER_ASSERT(reporter, set0.count() == i);
60 REPORTER_ASSERT(reporter, set0.count() == i + 1);
65 for (int i = 0; i < COUNT; i++) {
72 REPORTER_ASSERT(reporter, set0.count() == set1.count());
    [all...]
RecorderTest.cpp 16 #define COUNT(T) + 1
17 static const int kRecordTypes = SK_RECORD_TYPES(COUNT);
18 #undef COUNT
29 int count() const { return fHistogram[T::kType]; } function in class:Tally
32 for (unsigned i = 0; i < record.count(); i++) {
49 REPORTER_ASSERT(r, 1 == tally.count<SkRecords::DrawRect>());
ImageCacheTest.cpp 16 static const int COUNT = 10;
23 SkBitmap bm[COUNT];
26 for (int i = 0; i < COUNT; ++i) {
30 for (int i = 0; i < COUNT; ++i) {
55 for (size_t i = 0; i < COUNT * 100; ++i) {
69 for (int i = 0; i < COUNT; ++i) {
89 static const size_t defLimit = DIM * DIM * 4 * COUNT + 1024; // 1K slop
  /external/chromium_org/third_party/skia/bench/
RegionContainBench.cpp 28 COUNT = 10,
33 return SkIRect::MakeXYWH(0, i*H/COUNT, w, H/COUNT);
41 for (int i = 0; i < COUNT; i++) {
  /external/skia/bench/
RegionContainBench.cpp 28 COUNT = 10,
33 return SkIRect::MakeXYWH(0, i*H/COUNT, w, H/COUNT);
41 for (int i = 0; i < COUNT; i++) {
  /ndk/tests/
check-release.sh 101 COUNT=0
103 # Run a single test, and update failure/count appropriately.
118 COUNT=$(( $COUNT + 1 ))
151 echo -n "$FAILURES/$COUNT tests failed."
  /ndk/tests/standalone/builtin-macros/
run.sh 38 COUNT=0
72 COUNT=$(( $COUNT + 1 ))
110 COUNT=$(( $COUNT + 1 ))
252 echo "$COUNT/$COUNT tests passed. Nice job."
256 echo "$FAILURES/$COUNT tests failed !!"
  /packages/experimental/RpcPerformance/
rpcperftest.cpp 29 static const int COUNT = 10000;
82 for (int i = 0; i < COUNT; i++) {
94 COUNT, seconds, 1000.0 * seconds / COUNT);
  /external/chromium_org/v8/src/
hydrogen-check-elimination.h 52 #define COUNT(type, size, name, Name) + 1
53 static const int kStringMapsSize = 0 STRING_TYPE_LIST(COUNT);
54 #undef COUNT
  /external/clang/utils/ABITest/layout/
Makefile 3 # COUNT can be over-ridden to change the number of tests generated per
9 COUNT := 1000
65 $(ABITESTGEN) $(TESTARGS) -o $@ --min=$(shell expr $* '*' $(COUNT)) --count=$(COUNT)
  /ndk/tests/build/short-commands/
build.sh 15 COUNT=110
33 while [ $NUM -lt $COUNT ]; do
52 while [ $NUM -lt $COUNT ]; do
64 while [ $NUM -lt $COUNT ]; do
94 while [ $NUM -lt $COUNT ]; do
109 while [ $NUM -lt $COUNT ]; do
126 while [ $NUM -lt $COUNT ]; do
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapMesh.java 38 private static final int COUNT = (WIDTH + 1) * (HEIGHT + 1);
41 private final float[] mVerts = new float[COUNT*2];
42 private final float[] mOrig = new float[COUNT*2];
89 for (int i = 0; i < COUNT*2; i += 2) {

Completed in 642 milliseconds

1 2 3 4 5 6