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

1 2 3 4 5 6

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrier_init/
3-1.c 11 * [EINVAL] The value specified by count is equal to zero.
15 #define COUNT 0
32 /* Intilized barrier with count 0 (it should return EINVAL) */
34 rc = pthread_barrier_init(&barrier, NULL, COUNT);
38 ("Test FAILED: pthread_barrier_init() does not return EINVAL when intializing a barrier with count=0,"
1-1.c 28 #define COUNT 1
38 rc = pthread_barrier_init(&barrier, NULL, COUNT);
60 rc = pthread_barrier_init(&barrier, &ba, COUNT);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_rdlock/
5-1.c 25 #define COUNT 10
38 for (i = 0; i < COUNT; i++) {
47 for (i = 0; i < COUNT; i++) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_destroy/
1-1.c 12 * Loop for COUNT times:
22 #define COUNT 1000
30 while (cnt++ < COUNT) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_init/
3-1.c 14 * 2. Loop for COUNT time: lock for reading, unlock, lock for writing, unlock;
26 #define COUNT 1000
45 while (cnt++ < 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)
  /external/icu/icu4c/source/i18n/
standardplural.h 38 COUNT
  /external/skia/tests/
RecorderTest.cpp 17 #define COUNT(T) + 1
18 static const int kRecordTypes = SK_RECORD_TYPES(COUNT);
19 #undef COUNT
30 int count() const { return fHistogram[T::kType]; } function in class:Tally
33 for (int i = 0; i < record.count(); i++) {
50 REPORTER_ASSERT(r, 1 == tally.count<SkRecords::DrawRect>());
92 REPORTER_ASSERT(reporter, 1 == tally.count<SkRecords::DrawImage>());
107 REPORTER_ASSERT(reporter, 1 == tally.count<SkRecords::DrawImageRect>());
ImageCacheTest.cpp 42 static const int COUNT = 10;
46 for (int i = 0; i < COUNT; ++i) {
61 for (int i = 0; i < COUNT * 100; ++i) {
68 for (int i = 0; i < COUNT; ++i) {
77 for (int i = 0; i < COUNT; ++i) {
83 for (int i = 0; i < COUNT; ++i) {
95 for (int i = 0; i < COUNT; ++i) {
117 static const size_t defLimit = DIM * DIM * 4 * COUNT + 1024; // 1K slop
  /external/skqp/tests/
RecorderTest.cpp 17 #define COUNT(T) + 1
18 static const int kRecordTypes = SK_RECORD_TYPES(COUNT);
19 #undef COUNT
30 int count() const { return fHistogram[T::kType]; } function in class:Tally
33 for (int i = 0; i < record.count(); i++) {
50 REPORTER_ASSERT(r, 1 == tally.count<SkRecords::DrawRect>());
92 REPORTER_ASSERT(reporter, 1 == tally.count<SkRecords::DrawImage>());
107 REPORTER_ASSERT(reporter, 1 == tally.count<SkRecords::DrawImageRect>());
ImageCacheTest.cpp 42 static const int COUNT = 10;
46 for (int i = 0; i < COUNT; ++i) {
61 for (int i = 0; i < COUNT * 100; ++i) {
68 for (int i = 0; i < COUNT; ++i) {
77 for (int i = 0; i < COUNT; ++i) {
83 for (int i = 0; i < COUNT; ++i) {
95 for (int i = 0; i < COUNT; ++i) {
117 static const size_t defLimit = DIM * DIM * 4 * COUNT + 1024; // 1K slop
  /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) {
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) {
  /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/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/skqp/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/v8/src/crankshaft/
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
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
ResultUnit.java 38 COUNT,
  /art/test/061-out-of-memory/src/
Main.java 35 final int COUNT = 32768*32768 + 4;
36 int[] tooBig = new int[COUNT];
  /development/tools/axl/
axl.py 131 COUNT = 0
137 if (not(DropOnce.COUNT & 1)):
143 DropOnce.COUNT += 1
158 COUNT = 0
161 if not PipeDrop.COUNT % 3:
166 PipeDrop.COUNT += 1
170 PipeDrop.COUNT += 1
188 self.count = 0
192 self.count += len(data)
193 if self.count == 190890
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
StandardPlural.java 44 public static final int COUNT = VALUES.size();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
StandardPlural.java 42 public static final int COUNT = VALUES.size();
  /external/linux-kselftest/tools/testing/selftests/powerpc/dscr/
dscr.h 32 #define COUNT 100 /* Max iterations */
  /external/mesa3d/src/gallium/drivers/svga/
svga_state.c 306 unsigned count = 0; local
307 const unsigned COUNT = 2;
310 ret = SVGA3D_BeginSetRenderState( svga->swc, &rs, COUNT );
317 EMIT_RS(rs, count, SVGA3D_RS_COORDINATETYPE,
319 EMIT_RS(rs, count, SVGA3D_RS_FRONTWINDING, SVGA3D_FRONTWINDING_CW );
321 assert( COUNT == count );
  /external/valgrind/none/tests/
tls.c 9 #define COUNT 10
58 for(i = 0; i < COUNT; i++) {

Completed in 350 milliseconds

1 2 3 4 5 6