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

1 2 3 4

  /external/valgrind/drd/tests/
threaded-fork.c 19 int ctr; local
42 ctr = 0;
45 ctr++;
46 if (ctr >= 10) {
  /external/valgrind/none/tests/
threaded-fork.c 17 int ctr; local
40 ctr = 0;
43 ctr++;
44 if (ctr >= 10) {
  /cts/tests/camera/src/android/hardware/camera2/cts/helpers/
Preconditions.java 144 long ctr = 0; local
148 String.format("%s[%d] must not be null", valueName, ctr));
150 ++ctr;
  /external/boringssl/src/crypto/hkdf/
hkdf.c 60 uint8_t ctr = i + 1; local
68 !HMAC_Update(&hmac, &ctr, 1) ||
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
erase_key.pass.cpp 167 int ctr = 0; local
169 if (ctr++ % 2 == 0)
  /external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
erase_key.pass.cpp 377 int ctr = 0; local
379 if (ctr++ % 2 == 0)
  /external/libcxx/test/std/containers/unord/unord.multiset/
erase_key.pass.cpp 165 int ctr = 0; local
167 if (ctr++ % 2 == 0)
  /external/libcxx/test/std/containers/unord/unord.set/
erase_key.pass.cpp 164 int ctr = 0; local
166 if (ctr++ % 2 == 0)
  /external/selinux/libselinux/src/
is_customizable_type.c 16 unsigned int ctr = 0, i; local
28 while (fgets_unlocked(buf, selinux_page_size, fp) && ctr < UINT_MAX) {
29 ctr++;
32 if (ctr) {
35 ctr + 1);
39 && i < ctr) {
  /external/valgrind/memcheck/tests/
wrap5.c 18 static int ctr = 0; variable
23 ctr++;
24 if ((ctr % 3) == 1) {
88 printf("allocated %d Lards\n", ctr);
wrap8.c 25 static int ctr = 0; variable
30 ctr++;
31 if ((ctr % 3) == 1) {
95 printf("allocated %d Lards\n", ctr); fflush(stdout);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
Preconditions.java 148 long ctr = 0; local
152 String.format("%s[%d] must not be null", valueName, ctr));
154 ++ctr;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unorder.map.modifiers/
erase_key.pass.cpp 166 int ctr = 0; local
168 if (ctr++ % 2 == 0)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.modifiers/
erase_key.pass.cpp 377 int ctr = 0; local
379 if (ctr++ % 2 == 0)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
erase_key.pass.cpp 165 int ctr = 0; local
167 if (ctr++ % 2 == 0)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/
erase_key.pass.cpp 164 int ctr = 0; local
166 if (ctr++ % 2 == 0)
  /external/libdrm/nouveau/nvif/
if0003.h 13 } ctr[4]; member in struct:nvif_perfdom_v0
29 __u32 ctr[4]; member in struct:nvif_perfdom_read_v0
  /external/lzma/C/
AesOpt.c 112 __m128i ctr = *p; local
123 ctr = _mm_add_epi64(ctr, one); m0 = _mm_xor_si128(ctr, t);
124 ctr = _mm_add_epi64(ctr, one); m1 = _mm_xor_si128(ctr, t);
125 ctr = _mm_add_epi64(ctr, one); m2 = _mm_xor_si128(ctr, t);
    [all...]
  /external/google-breakpad/src/google_breakpad/common/
minidump_cpu_ppc64.h 105 uint64_t ctr; /* Count */ member in struct:__anon11407
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
CounterComparatorTest.java 107 cmp.compare(ctr(missed1, covered1), ctr(missed2, covered2)),
113 assertTrue(cmp.compare(ctr(missed1, covered1), ctr(missed2, covered2)) < 0); method
118 assertTrue(cmp.compare(ctr(missed1, covered1), ctr(missed2, covered2)) > 0);
121 private CounterImpl ctr(int missed, int covered) { method in class:CounterComparatorTest
  /external/libjpeg-turbo/
jfdctflt.c 65 int ctr; local
70 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
120 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  /external/opencv3/3rdparty/libjpeg/
jfdctflt.c 67 int ctr; local
72 for (ctr = 0; ctr < DCTSIZE; ctr++) {
73 elemptr = sample_data[ctr] + start_col;
126 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
jidctflt.c 81 int ctr; local
89 for (ctr = DCTSIZE; ctr > 0; ctr--) {
179 for (ctr = 0; ctr < DCTSIZE; ctr++) {
180 outptr = output_buf[ctr] + output_col;
  /external/v8/test/mjsunit/
string-replace.js 123 var ctr = 0; variable
129 return String(ctr++);
131 assertEquals(1, ctr, "replace('x',func) num-match");
133 ctr = 0;
139 return String(ctr++);
141 assertEquals(1, ctr, "replace(/x/,func) num-match");
143 ctr = 0;
147 assertEquals(ctr * 2, i, "replace(/x/g,func(..,i,.))");
149 return String(ctr++);
151 assertEquals(4, ctr, "replace(/x/g,func) num-match")
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
Preconditions.java 388 long ctr = 0; local
392 String.format("%s[%d] must not be null", valueName, ctr));
394 ++ctr;

Completed in 881 milliseconds

1 2 3 4