Searched refs:cnt (Results 26 - 50 of 377) sorted by relevance

1234567891011>>

/external/linux-tools-perf/src/tools/perf/util/
H A Dhelp.c16 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc);
17 cmds->names[cmds->cnt++] = ent;
24 for (i = 0; i < cmds->cnt; ++i)
27 cmds->cnt = 0;
42 if (!cmds->cnt)
45 for (i = j = 1; i < cmds->cnt; i++)
49 cmds->cnt = j;
58 while (ci < cmds->cnt && ei < excludes->cnt) {
68 while (ci < cmds->cnt)
[all...]
/external/elfutils/src/tests/
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 Dget-pubnames.c70 int cnt; local
72 for (cnt = 1; cnt < argc; ++cnt)
74 int fd = open (argv[cnt], O_RDONLY);
78 printf ("%s not usable: %s\n", argv[cnt], dwarf_errmsg (-1));
H A Dshow-abbrev.c30 int cnt; local
32 for (cnt = 1; cnt < argc; ++cnt)
34 int fd = open (argv[cnt], O_RDONLY);
38 printf ("%s not usable: %s\n", argv[cnt], dwarf_errmsg (-1));
124 printf ("dwarf_end failed for %s: %s\n", argv[cnt],
H A Dget-lines.c34 int cnt; local
36 for (cnt = 1; cnt < argc; ++cnt)
38 int fd = open (argv[cnt], O_RDONLY);
43 printf ("%s not usable: %s\n", argv[cnt], dwarf_errmsg (-1));
65 printf ("%s: cannot get CU die\n", argv[cnt]);
75 printf ("%s: cannot get lines\n", argv[cnt]);
87 printf ("%s: cannot get individual line\n", argv[cnt]);
H A Decp.c59 int cnt; local
65 for (cnt = 0; cnt < ehdr->e_phnum; ++cnt)
69 gelf_update_phdr (outelf, cnt, gelf_getphdr (inelf, cnt, &phdr_mem));
/external/elfutils/src/libasm/
H A Dasm_addstrz.c63 size_t cnt; local
65 for (cnt = 0; cnt < len; ++cnt)
66 if (str[cnt] != '\0')
/external/elfutils/src/src/
H A Delflint.c357 size_t cnt; local
395 for (cnt = EI_PAD; cnt < EI_NIDENT; ++cnt)
396 if (ehdr->e_ident[cnt] != 0)
397 ERROR (gettext ("e_ident[%zu] is not zero\n"), cnt);
405 for (cnt = 0; cnt < nvalid_e_machine; ++cnt)
406 if (valid_e_machine[cnt]
540 size_t cnt; local
1068 size_t cnt; local
1331 check_one_reloc(Ebl *ebl, GElf_Ehdr *ehdr, GElf_Shdr *relshdr, int idx, size_t cnt, const GElf_Shdr *symshdr, Elf_Data *symdata, GElf_Addr r_offset, GElf_Xword r_info, const GElf_Shdr *destshdr, bool reldyn, struct loaded_segment *loaded, enum load_state *statep) argument
1563 size_t cnt; local
1998 size_t cnt; local
2049 size_t cnt; local
2122 size_t cnt; local
2496 size_t cnt; local
2956 idx, section_name (ebl, idx), need->vn_cnt - cnt2, cnt); local
2963 idx, section_name (ebl, idx), need->vn_cnt - cnt2, cnt); local
2971 cnt, (int) hashval, (int) aux->vna_hash); local
2981 cnt, verstr); local
2991 idx, section_name (ebl, idx), need->vn_cnt - cnt2, cnt); local
4068 check_note(Ebl *ebl, GElf_Ehdr *ehdr, GElf_Phdr *phdr, int cnt) argument
[all...]
/external/openssh/openbsd-compat/
H A Dsetenv.c87 size_t cnt;
111 cnt = P - environ;
112 P = (char **)realloc(lastenv, sizeof(char *) * (cnt + 2));
116 memcpy(P, environ, cnt * sizeof(char *));
118 environ[cnt] = str;
119 environ[cnt + 1] = NULL;
166 size_t cnt; local
170 cnt = P - environ;
171 P = (char **)realloc(lastenv, sizeof(char *) * (cnt + 2));
175 memcpy(P, environ, cnt * sizeo
[all...]
/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/e2fsprogs/intl/
H A Dl10nflist.c184 int cnt; local
334 for (cnt = dirlist_count > 1 ? mask : mask - 1; cnt >= 0; --cnt)
335 if ((cnt & ~mask) == 0
336 && ((cnt & CEN_SPECIFIC) == 0 || (cnt & XPG_SPECIFIC) == 0)
337 && ((cnt & XPG_CODESET) == 0 || (cnt & XPG_NORM_CODESET) == 0))
348 cnt, languag
375 size_t cnt; local
[all...]
/external/selinux/libsepol/src/
H A Dutil.c33 /* Add an unsigned integer to a dynamically reallocated array. *cnt
36 * NULL then this function will create a new array (*cnt is reset to
38 int add_i_to_a(uint32_t i, uint32_t * cnt, uint32_t ** a) argument
40 if (cnt == NULL || a == NULL)
48 *a = (uint32_t *) realloc(*a, (*cnt + 1) * sizeof(uint32_t));
51 *cnt = 0;
57 (*a)[*cnt] = i;
58 (*cnt)++;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBaseStack.h51 + (ANTLRBaseStack *)newANTLRBaseStackWithLen:(NSInteger)cnt;
53 - (id)initWithLen:(NSInteger)cnt;
H A DANTLRRuleStack.h46 +(ANTLRRuleStack *)newANTLRRuleStack:(NSInteger)cnt;
48 -(id)initWithLen:(NSInteger)cnt;
H A DANTLRSymbolStack.h57 +(ANTLRSymbolStack *)newANTLRSymbolStackWithLen:(NSInteger)cnt;
59 -(id)initWithLen:(NSInteger)cnt;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBaseStack.h51 + (ANTLRBaseStack *)newANTLRBaseStackWithLen:(NSInteger)cnt;
53 - (id)initWithLen:(NSInteger)cnt;
H A DANTLRRuleStack.h46 +(ANTLRRuleStack *)newANTLRRuleStack:(NSInteger)cnt;
48 -(id)initWithLen:(NSInteger)cnt;
H A DANTLRSymbolStack.h57 +(ANTLRSymbolStack *)newANTLRSymbolStackWithLen:(NSInteger)cnt;
59 -(id)initWithLen:(NSInteger)cnt;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBaseStack.h51 + (ANTLRBaseStack *)newANTLRBaseStackWithLen:(NSInteger)cnt;
53 - (id)initWithLen:(NSInteger)cnt;
H A DANTLRRuleStack.h46 +(ANTLRRuleStack *)newANTLRRuleStack:(NSInteger)cnt;
48 -(id)initWithLen:(NSInteger)cnt;
H A DANTLRSymbolStack.h57 +(ANTLRSymbolStack *)newANTLRSymbolStackWithLen:(NSInteger)cnt;
59 -(id)initWithLen:(NSInteger)cnt;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRBaseStack.h51 + (ANTLRBaseStack *)newANTLRBaseStackWithLen:(NSInteger)cnt;
53 - (id)initWithLen:(NSInteger)cnt;
H A DANTLRRuleStack.h46 +(ANTLRRuleStack *)newANTLRRuleStack:(NSInteger)cnt;
48 -(id)initWithLen:(NSInteger)cnt;
H A DANTLRSymbolStack.h57 +(ANTLRSymbolStack *)newANTLRSymbolStackWithLen:(NSInteger)cnt;
59 -(id)initWithLen:(NSInteger)cnt;

Completed in 2028 milliseconds

1234567891011>>