Searched defs:cnt (Results 1 - 25 of 435) sorted by relevance

1234567891011>>

/external/clang/test/CoverageMapping/
H A Dbreak.c4 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; // CHEC
[all...]
/external/fec/
H A Dpeakval.c8 int peakval_port(signed short *b,int cnt);
10 int peakval_mmx(signed short *b,int cnt);
11 int peakval_sse(signed short *b,int cnt);
12 int peakval_sse2(signed short *b,int cnt);
16 int peakval_av(signed short *b,int cnt);
19 int peakval(signed short *b,int cnt){ argument
25 return peakval_port(b,cnt);
28 return peakval_mmx(b,cnt);
30 return peakval_sse(b,cnt);
32 return peakval_sse2(b,cnt);
[all...]
H A Dsumsq.c22 unsigned long long sumsq(signed short *in,int cnt){ argument
26 return sumsq_port(in,cnt);
30 return sumsq_mmx(in,cnt);
32 return sumsq_sse2(in,cnt);
37 return sumsq_av(in,cnt);
H A Dsumsq_mmx.c15 long long sumsq_mmx(signed short *in,int cnt){ argument
19 while(((int)in & 7) != 0 && cnt != 0){
22 cnt--;
24 sum += sumsq_mmx_assist(in,cnt);
25 in += cnt & ~7;
26 cnt &= 7;
29 while(cnt != 0){
32 cnt--;
H A Dsumsq_sse2.c13 long long sumsq_sse2(signed short *in,int cnt){ argument
17 while(((int)in & 15) != 0 && cnt != 0){
20 cnt--;
22 sum += sumsq_sse2_assist(in,cnt);
23 in += cnt & ~7;
24 cnt &= 7;
27 while(cnt != 0){
30 cnt--;
H A Dpeakval_mmx.c9 int peakval_mmx(signed short *b,int cnt){ argument
13 while(((int)b & 7) != 0 && cnt != 0){
18 cnt--;
20 a = peakval_mmx_assist(b,cnt);
23 b += cnt & ~3;
24 cnt &= 3;
26 while(cnt != 0){
31 cnt--;
H A Dpeakval_sse.c10 int peakval_sse(signed short *b,int cnt){ argument
14 while(((int)b & 7) != 0 && cnt != 0){
19 cnt--;
21 a = peakval_sse_assist(b,cnt);
24 b += cnt & ~3;
25 cnt &= 3;
27 while(cnt != 0){
32 cnt--;
H A Dpeakval_sse2.c9 int peakval_sse2(signed short *b,int cnt){ argument
13 while(((int)b & 15) != 0 && cnt != 0){
18 cnt--;
20 a = peakval_sse2_assist(b,cnt);
23 b += cnt & ~7;
24 cnt &= 7;
26 while(cnt != 0){
31 cnt--;
H A Dsumsq_port.c8 unsigned long long sumsq_port(signed short *in,int cnt){ argument
12 for(i=0;i<cnt;i++){
H A Dfec.c15 int i,cnt,ti; local
19 cnt = 0;
23 cnt++;
26 Partab[i] = cnt & 1;
/external/elfutils/libasm/
H A Dasm_addstrz.c60 size_t cnt; local
62 for (cnt = 0; cnt < len; ++cnt)
63 if (str[cnt] != '\0')
H A Dasm_align.c66 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/
H A Dmsg_tst.c91 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);
H A Dasm-tst4.c40 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)
H A Dasm-tst5.c42 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)
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrier_destroy/
H A D1-1.c32 int cnt; local
35 for (cnt = 0; cnt < LOOP_NUM; cnt++) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrierattr_init/
H A D2-1.c32 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/
H A D1-1.c27 int cnt = 0; local
30 while (cnt++ < COUNT) {
40 cnt, rc);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_init/
H A D3-1.c32 int cnt = 0; local
45 while (cnt++ < COUNT) {
49 cnt);
56 cnt);
63 cnt);
70 cnt);
/external/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_batch_cache.h40 unsigned cnt; member in struct:fd_batch_cache
/external/skia/src/gpu/
H A DGrProcessorAnalysis.cpp15 int cnt) {
24 for (int i = 0; i < cnt; ++i) {
12 GrColorFragmentProcessorAnalysis( const GrProcessorAnalysisColor& input, const GrFragmentProcessor* const* processors, int cnt) argument
/external/skqp/src/gpu/
H A DGrProcessorAnalysis.cpp15 int cnt) {
24 for (int i = 0; i < cnt; ++i) {
12 GrColorFragmentProcessorAnalysis( const GrProcessorAnalysisColor& input, const GrFragmentProcessor* const* processors, int cnt) argument
/external/strace/
H A Dsysctl.c69 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)
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic_clang_x86.h20 INLINE void proc_yield(int cnt) { argument
22 for (int i = 0; i < cnt; i++)
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_stack_trace.cc39 void VarSizeStackTrace::Init(const uptr *pcs, uptr cnt, uptr extra_top_pc) { argument
40 ResizeBuffer(cnt + !!extra_top_pc);
41 internal_memcpy(trace_buffer, pcs, cnt * sizeof(trace_buffer[0]));
43 trace_buffer[cnt] = extra_top_pc;

Completed in 6615 milliseconds

1234567891011>>