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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CoverageMapping/
break.c 4 int cnt = 0; // CHECK-NEXT: File 0, [[@LINE+1]]:9 -> [[@LINE+1]]:18 = #0 local
5 while(cnt < 100) { // CHECK-NEXT: File 0, [[@LINE]]:20 -> [[@LINE+3]]:4 = #1
7 ++cnt; // CHECK-NEXT: File 0, [[@LINE]]:5 -> [[@LINE+1]]:4 = 0
9 while(cnt < 100) { // CHECK-NEXT: File 0, [[@LINE]]:20 -> [[@LINE+6]]:4 = #2
12 ++cnt; // CHECK-NEXT: File 0, [[@LINE]]:7 -> [[@LINE+3]]:4 = 0
14 ++cnt;
16 while(cnt < 100) { // CHECK-NEXT: File 0, [[@LINE]]:20 -> [[@LINE+7]]:4 = #3
18 if(cnt == 0) { // CHECK-NEXT: File 0, [[@LINE]]:18 -> [[@LINE+3]]:6 = #4
20 ++cnt; // CHECK-NEXT: File 0, [[@LINE]]:7 -> [[@LINE+1]]:6 = 0
22 ++cnt; // CHECK-NEXT: File 0, [[@LINE]]:5 -> [[@LINE+1]]:4 = (#3 - #4
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
getsubopt.c 47 int cnt; local
88 for (cnt = 0; *tokens; ++tokens, ++cnt)
90 return(cnt);
  /external/elfutils/libasm/
asm_addstrz.c 60 size_t cnt; local
62 for (cnt = 0; cnt < len; ++cnt)
63 if (str[cnt] != '\0')
asm_align.c 66 for (size_t cnt = 0; cnt < asmscn->pattern->len; ++cnt)
68 asmscn->pattern->bytes[cnt]);
83 size_t cnt = value - (asmscn->offset & (value - 1)); local
86 result = __libasm_ensure_section_space (asmscn, cnt);
95 asmscn->offset += cnt;
105 while (--cnt > 0);
  /external/elfutils/tests/
dwarf-getstring.c 33 int cnt; local
35 for (cnt = 1; cnt < argc; ++cnt)
40 int fd = open (argv[cnt], O_RDONLY);
43 printf ("cannot open '%s': %m\n", argv[cnt]);
50 printf ("%s not usable: %s\n", argv[cnt], dwarf_errmsg (-1));
msg_tst.c 91 size_t cnt; local
98 for (cnt = 1; cnt < ELF_E_NUM; ++cnt)
100 const char *str = elf_errmsg (libelf_msgs[cnt].id);
102 if (strcmp (str, libelf_msgs[cnt].expected) != 0)
105 cnt, libelf_msgs[cnt].expected, str);
test-nlist.c 46 int cnt; local
56 for (cnt = 0; nl[cnt].n_name != NULL; ++cnt)
66 cnt, nl[cnt].n_name,
67 cnt, nl[cnt].n_value,
68 cnt, nl[cnt].n_scnum
    [all...]
asm-tst4.c 40 size_t cnt; local
59 for (cnt = 0; cnt < 66000; ++cnt)
65 snprintf (buf, sizeof (buf), ".data.%zu", cnt);
78 if (asm_adduint32 (scn, cnt) != 0)
asm-tst5.c 42 size_t cnt; local
61 for (cnt = 0; cnt < 66000; ++cnt)
67 snprintf (buf, sizeof (buf), ".data.%zu", cnt);
80 snprintf (buf, sizeof (buf), "%zu", cnt);
90 if (asm_adduint32 (scn, cnt) != 0)
asm-tst6.c 40 size_t cnt; local
58 for (cnt = 0; cnt < 22000; ++cnt)
65 snprintf (buf, sizeof (buf), ".grp%zu", cnt);
69 printf ("cannot section group %zu: %s\n", cnt, asm_errmsg (-1));
79 cnt, asm_errmsg (-1));
85 snprintf (buf, sizeof (buf), "%zu", cnt);
96 if (asm_adduint32 (scn, cnt) != 0)
108 cnt, asm_errmsg (-1))
    [all...]
  /external/fec/
fec.c 15 int i,cnt,ti; local
19 cnt = 0;
23 cnt++;
26 Partab[i] = cnt & 1;
  /external/ltp/testcases/kernel/syscalls/futex/
futex_utils.h 31 unsigned int cnt = 0; local
52 cnt++;
57 if (cnt != nr_threads) {
59 cnt, nr_threads);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrier_destroy/
1-1.c 32 int cnt; local
35 for (cnt = 0; cnt < LOOP_NUM; cnt++) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrierattr_init/
2-1.c 32 int cnt; local
43 for (cnt = 0; cnt < BARRIER_NUM; cnt++) {
44 if (pthread_barrier_init(&barriers[cnt], &ba, 1) != 0) {
45 printf("Error at %dth initialization\n", cnt);
60 for (cnt = 0; cnt < BARRIER_NUM; cnt++) {
61 rc = pthread_barrier_wait(&barriers[cnt]);
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_destroy/
1-1.c 27 int cnt = 0; local
30 while (cnt++ < COUNT) {
40 cnt, rc);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_init/
3-1.c 32 int cnt = 0; local
45 while (cnt++ < COUNT) {
49 cnt);
56 cnt);
63 cnt);
70 cnt);
1-1.c 56 int cnt = 0; local
86 cnt = 0;
89 } while (thread_state != 3 && cnt++ < 3);
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_batch_cache.h 40 unsigned cnt; member in struct:fd_batch_cache
  /external/strace/
sysctl.c 69 unsigned int cnt = 0, max_cnt; local
76 ++cnt;
84 ++cnt;
89 ++cnt;
94 ++cnt;
162 while (cnt < max_cnt)
163 tprintf(", %x", name[cnt++]);
164 if (cnt < (unsigned) info.nlen)
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprogcgo/
callback.go 47 var cnt int var
  /prebuilts/go/linux-x86/src/runtime/testdata/testprogcgo/
callback.go 47 var cnt int var
  /cts/tools/dasm/src/java_cup/
parse_reduce_table.java 60 int cnt; local
66 cnt = 0;
79 cnt++;
80 if (cnt == 3)
83 cnt = 0;
88 if (cnt != 0) result += "\n";
  /external/libusb/examples/
listdevs.c 56 ssize_t cnt; local
62 cnt = libusb_get_device_list(NULL, &devs);
63 if (cnt < 0)
64 return (int) cnt;
  /external/ltp/testcases/kernel/syscalls/ioctl/
ioctl07.c 40 int cnt, pcnt; local
42 SAFE_IOCTL(fd, RNDGETENTCNT, &cnt);
44 tst_res(TINFO, "entropy value from ioctl: %d, proc: %d", cnt, pcnt);
46 if (abs(pcnt - cnt) <= fuzz)
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/
10-1.c 37 unsigned long cnt; local
62 for (cnt = 0; cnt < LOOP_NUM; cnt++) {

Completed in 619 milliseconds

1 2 3 4 5 6 7 8 91011>>