Searched defs:count (Results 1 - 25 of 3132) sorted by relevance

1234567891011>>

/external/compiler-rt/test/BlocksRuntime/
H A Drdar6396238.c12 static int count = 0; variable
16 count++;
18 count++;
24 if (count != 2) {
25 printf("%s: failure, 2 != %d\n", argv[0], count);
/external/llvm/test/CodeGen/SystemZ/Large/
H A Dspill-01.py9 # count == (4096 - 168) / 8 + 6 + 1 == 498
21 count = 500 variable
27 for i in range(count):
35 for i in range(count):
H A Dspill-02.py38 count = 14 variable
39 for i in range(count):
47 for i in range(count):
67 for i in range(count):
/external/v8/test/mjsunit/
H A Ddont-enum-array-holes.js29 var count = 0; variable
30 for (var i in [,1,,3]) count++;
31 assertEquals(2, count);
33 count = 0;
34 for (var i in new Array(10)) count++;
35 assertEquals(0, count);
H A Dfor-in-null-or-undefined.js30 var count = 0; variable
31 for (var p in null) { count++; }
32 for (var p in void 0) { count++; }
33 assertEquals(0, count);
/external/v8/test/mjsunit/regress/
H A Dregress-113924.js28 var count=12000; variable
29 while(count--) {
H A Dregress-1849.js32 var count = 1e5; variable
33 var arr = new Array(count);
35 for (var i = 0; i < count; i++) {
H A Dregress-351624.js18 var count = 5; variable
19 for (var i = 0; i < count; i++) {
20 if (i == count - 1) %OptimizeFunctionOnNextCall(mult0);
H A Dsetter.js49 var count = 0; variable
52 count += 1;
58 assertEquals(1, count);
62 assertEquals(2, count);
66 assertEquals(3, count);
/external/eigen/doc/snippets/
H A DMatrixBase_cwiseEqual.cpp6 int count = m.cwiseEqual(MatrixXi::Identity(2,2)).count(); variable
7 cout << "Number of coefficients that are equal: " << count << endl;
H A DMatrixBase_cwiseNotEqual.cpp6 int count = m.cwiseNotEqual(MatrixXi::Identity(2,2)).count(); variable
7 cout << "Number of coefficients that are not equal: " << count << endl;
/external/v8/test/webkit/
H A Ddfg-to-string-side-effect-clobbers-toString.js35 var count = 0; variable
37 var code = "(function(s) { " + (i < 150 ? "return " + i + ";" : "count++; debug(\"hi!\"); s.toString = function() { return " + i + "; };") + " })";
H A Dregexp-many-brackets.js28 var count = 200; variable
31 for (var i = 0; i < count; ++i)
34 for (var i = 0; i < count; ++i)
38 for (var i = 0; i <= count; ++i)
H A Ddfg-side-effect-assignment-osr-exit.js34 var count = 0; variable
36 count++;
46 shouldBe("count", "" + (i + 1));
/external/v8/test/webkit/fast/js/kde/
H A Diteration.js26 var count = 0; variable
28 count++;
29 } while (count < 10);
30 shouldBe("count", "10");
32 count = 0;
36 count++;
38 shouldBe("count", "5");
41 count = 0;
43 count++;
45 shouldBe("count", "1
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DArrayIterator.h50 * NSArrays are fixed size; precompute count.
52 NSInteger count; variable
70 - (NSInteger) count;
75 @property (assign, getter=count, setter=setCount:) NSInteger count; variable
H A DAMutableArray.h16 NSInteger count; variable
36 - (NSInteger) count;
38 //- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
46 @property (assign, getter=count, setter=setCount:) NSInteger count; variable
/external/boringssl/src/crypto/
H A Drefcount_test.c23 CRYPTO_refcount_t count = 0; local
25 CRYPTO_refcount_inc(&count);
26 if (count != 1) {
27 fprintf(stderr, "Incrementing reference count did not work.\n");
30 if (!CRYPTO_refcount_dec_and_test_zero(&count) || count != 0) {
31 fprintf(stderr, "Decrementing reference count to zero did not work.\n");
35 count = CRYPTO_REFCOUNT_MAX;
36 CRYPTO_refcount_inc(&count);
37 if (count !
[all...]
H A Drefcount_lock.c29 void CRYPTO_refcount_inc(CRYPTO_refcount_t *count) { argument
31 if (*count < CRYPTO_REFCOUNT_MAX) {
32 (*count)++;
37 int CRYPTO_refcount_dec_and_test_zero(CRYPTO_refcount_t *count) { argument
41 if (*count == 0) {
44 if (*count < CRYPTO_REFCOUNT_MAX) {
45 (*count)--;
47 ret = (*count == 0);
/external/expat/tests/
H A Dchardata.h20 int count; /* # of chars, < 0 if not set */ member in struct:__anon4878
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_query.h45 uint64_t count[LP_MAX_THREADS]; /**< a counter for each thread */ member in struct:llvmpipe_query
/external/valgrind/exp-bbv/tests/arm-linux/
H A Dmillion.S2 # count for 1 million instructions
12 ldr r2,count @ set count
27 count: .word 333332 label
/external/compiler-rt/test/asan/TestCases/Windows/
H A Dcrt_initializers.cc15 unsigned count = 0; local
20 count++;
23 printf("Number of nonzero CRT initializers: %u\n", count);
/external/deqp/framework/delibs/deutil/
H A DdeClock.c41 LARGE_INTEGER count; local
42 QueryPerformanceCounter(&count);
47 return count.QuadPart / (freq.QuadPart / 1000000);
/external/javasqlite/src/main/java/SQLite/
H A DBusyHandler.java16 * @param count number of times the table was locked
19 public boolean busy(String table, int count); argument

Completed in 4732 milliseconds

1234567891011>>