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

1 2 3 4

  /external/openssl/crypto/
mem_clr.c 67 size_t loop = len, ctr = cleanse_ctr; local
70 *(p++) = (unsigned char)ctr;
71 ctr += (17 + ((size_t)p & 0xF));
73 p=memchr(ptr, (unsigned char)ctr, len);
75 ctr += (63 + (size_t)p);
76 cleanse_ctr = (unsigned char)ctr;
  /external/valgrind/main/drd/tests/
threaded-fork.c 19 int ctr; local
42 ctr = 0;
45 ctr++;
46 if (ctr >= 10) {
  /external/valgrind/main/none/tests/
threaded-fork.c 17 int ctr; local
40 ctr = 0;
43 ctr++;
44 if (ctr >= 10) {
  /cts/tests/tests/hardware/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/libcxx/test/containers/unord/unord.map/unorder.map.modifiers/
erase_key.pass.cpp 166 int ctr = 0; local
168 if (ctr++ % 2 == 0)
  /external/libcxx/test/containers/unord/unord.multimap/unord.multimap.modifiers/
erase_key.pass.cpp 377 int ctr = 0; local
379 if (ctr++ % 2 == 0)
  /external/libcxx/test/containers/unord/unord.multiset/
erase_key.pass.cpp 165 int ctr = 0; local
167 if (ctr++ % 2 == 0)
  /external/libcxx/test/containers/unord/unord.set/
erase_key.pass.cpp 164 int ctr = 0; local
166 if (ctr++ % 2 == 0)
  /external/valgrind/main/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);
  /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/chromium_org/third_party/boringssl/src/crypto/ecdh/
ecdh.c 174 uint8_t ctr[4]; local
185 ctr[3] = i & 0xFF;
186 ctr[2] = (i >> 8) & 0xFF;
187 ctr[1] = (i >> 16) & 0xFF;
188 ctr[0] = (i >> 24) & 0xFF;
190 !EVP_DigestUpdate(&mctx, ctr, sizeof(ctr)) ||
  /external/chromium_org/third_party/libjpeg_turbo/
jfdctflt.c 65 int ctr; local
70 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
120 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
jidctflt.c 80 int ctr; local
89 for (ctr = DCTSIZE; ctr > 0; ctr--) {
180 for (ctr = 0; ctr < DCTSIZE; ctr++) {
181 outptr = output_buf[ctr] + output_col;
jfdctfst.c 120 int ctr; local
126 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
176 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
jfdctint.c 146 int ctr; local
154 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
219 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  /external/chromium_org/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...]
  /external/jpeg/
jfdctflt.c 65 int ctr; local
70 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
120 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
jidctflt.c 80 int ctr; local
89 for (ctr = DCTSIZE; ctr > 0; ctr--) {
180 for (ctr = 0; ctr < DCTSIZE; ctr++) {
181 outptr = output_buf[ctr] + output_col;
  /external/qemu/distrib/jpeg-6b/
jfdctflt.c 65 int ctr; local
70 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
120 for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
jidctflt.c 80 int ctr; local
89 for (ctr = DCTSIZE; ctr > 0; ctr--) {
180 for (ctr = 0; ctr < DCTSIZE; ctr++) {
181 outptr = output_buf[ctr] + output_col;
  /frameworks/base/core/java/com/android/internal/util/
Preconditions.java 256 long ctr = 0; local
260 String.format("%s[%d] must not be null", valueName, ctr));
262 ++ctr;

Completed in 453 milliseconds

1 2 3 4