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

1234567891011>>

/external/compiler-rt/test/msan/wrap_indirect_calls/
H A Dwrapper.cc4 int cnt; variable
7 ++cnt;
/external/elfutils/0.153/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.c65 for (size_t cnt = 0; cnt < asmscn->pattern->len; ++cnt)
67 asmscn->pattern->bytes[cnt]);
82 size_t cnt = value - (asmscn->offset & (value - 1)); local
85 result = __libasm_ensure_section_space (asmscn, cnt);
94 asmscn->offset += cnt;
104 while (--cnt > 0);
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/rexx/
H A Dscanio.c2 unsigned cnt = s->tok - s->bot; local
4 if(cnt){
15 cursor -= cnt;
16 s->lim -= cnt;
19 s->ptr -= cnt;
36 if((cnt = read(ScanCBIO.u.f.fd, (char*) s->lim, 512)) != 512)
37 memset(&s->lim[cnt], 0, 512 - cnt);
/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++)
H A Dsanitizer_atomic_clang_other.h20 INLINE void proc_yield(int cnt) { argument
H A Dsanitizer_lfstack.h39 u64 cnt = (cmp & kCounterMask) + kCounterInc; local
40 u64 xch = (u64)(uptr)p | cnt;
55 u64 cnt = (cmp & kCounterMask); local
56 u64 xch = (u64)(uptr)nxt | cnt;
/external/libusb/examples/
H A Dlsusb.c48 ssize_t cnt; local
54 cnt = libusb_get_device_list(NULL, &devs);
55 if (cnt < 0)
56 return (int) cnt;
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeObject.cpp94 int cnt = (int) filters->size(); local
95 for (int i = cnt - 1; i >= 0; i--) {
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLSL.cpp76 int cnt = SkTMin((int)SK_ARRAY_COUNT(kTabs), tabCnt); local
77 outAppend->append(kTabs, cnt);
78 tabCnt -= cnt;
/external/chromium_org/third_party/sqlite/src/test/
H A Dcrashtest1.c31 int cnt = 0; local
52 cnt++;
63 printf("pid %d: cnt=%d\n", getpid(), cnt);
H A Dthreadtest2.c78 int cnt = 0; local
80 while( !all_stop && cnt++<10000 ){
81 if( cnt%100==0 ) printf("%d: %d\n", id, cnt);
/external/elfutils/0.153/libdw/
H A Ddwarf_getpubnames.c68 size_t cnt = 0; local
78 if (cnt >= allocated)
110 mem[cnt].set_start = readp + 2 + 2 * len_bytes - startp;
111 mem[cnt].address_len = len_bytes;
112 if (mem[cnt].set_start >= dbg->sectiondata[IDX_debug_pubnames]->d_size)
127 &mem[cnt].cu_offset, IDX_debug_info, 3))
134 + mem[cnt].cu_offset);
136 mem[cnt].cu_header_size = 23;
138 mem[cnt].cu_header_size = 11;
140 ++cnt;
[all...]
/external/elfutils/0.153/libelf/
H A Delf_end.c162 size_t cnt = list->max; local
164 while (cnt-- > 0)
168 Elf_Scn *scn = &list->data[cnt];
203 assert (list == NULL || oldp->cnt == oldp->max);
/external/libnfc-nci/src/adaptation/
H A DCrcChecksum.cpp78 register int cnt = bufferLen; local
80 while (cnt--)
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhelp.h6 size_t cnt; member in struct:cmdnames
/external/ppp/pppd/plugins/radius/
H A Dradattr.c73 int cnt = 0; local
87 cnt++;
90 dbglog("RADATTR plugin wrote %d line(s) to file %s.", cnt, fname);
H A Dutil.c77 static unsigned short int cnt = 0; local
81 cnt & 0xFF);
82 cnt++;
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeObject.cpp94 int cnt = (int) filters->size(); local
95 for (int i = cnt - 1; i >= 0; i--) {
/external/skia/src/gpu/gl/
H A DGrGLSL.cpp76 int cnt = SkTMin((int)SK_ARRAY_COUNT(kTabs), tabCnt); local
77 outAppend->append(kTabs, cnt);
78 tabCnt -= cnt;
/external/chromium_org/skia/ext/
H A Dconvolver_mips_dspr2.cc244 int cnt; local
258 "srl %[cnt], %[filter_len], 2 \n"
259 "beqz %[cnt], 2f \n"
300 "addiu %[cnt], %[cnt], -1 \n"
301 "bgtz %[cnt], 11b \n"
305 "andi %[cnt], %[filter_len], 0x3 \n" // residual
306 "beqz %[cnt], 3f \n"
324 "addiu %[cnt], %[cnt],
[all...]
/external/chromium_org/third_party/skia/tests/
H A DGrAllocatorTest.cpp26 static void check_allocator_helper(GrTAllocator<C>* allocator, int cnt, int popCnt,
29 // Adds cnt items to the allocator, tests the cnts and iterators, pops popCnt items and checks
31 static void check_allocator(GrTAllocator<C>* allocator, int cnt, int popCnt, argument
35 for (int i = 0; i < cnt; ++i) {
43 check_allocator_helper(allocator, cnt, popCnt, reporter);
50 static void check_allocator_helper(GrTAllocator<C>* allocator, int cnt, int popCnt, argument
52 REPORTER_ASSERT(reporter, (0 == cnt) == allocator->empty());
53 REPORTER_ASSERT(reporter, cnt == allocator->count());
54 REPORTER_ASSERT(reporter, cnt == C::gInstCnt);
57 for (int i = 0; i < cnt;
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_stack_trace.cc26 StackTrace::StackTrace(uptr *buf, uptr cnt) argument
29 , c_(cnt) {
31 CHECK_NE(cnt, 0);
47 void StackTrace::Init(const uptr *pcs, uptr cnt) { argument
49 if (cnt == 0)
53 CHECK_LE(cnt, c_);
55 s_ = (uptr*)internal_alloc(MBlockStackTrace, cnt * sizeof(s_[0]));
57 n_ = cnt;
58 internal_memcpy(s_, pcs, cnt * sizeof(s_[0]));
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dproc-llist.h48 unsigned int cnt; // How many items in this list member in struct:__anon23579
/external/oprofile/libop/
H A Dop_cpu_type.c201 int cnt; local
206 cnt = arch_num_counters(cpu_type);
207 if (cnt >= 0)
208 return cnt;

Completed in 4779 milliseconds

1234567891011>>