/src/usr.sbin/lockstat/ |
elf32.c | 95 static int nsyms; variable in typeref:typename:int 161 nsyms = (int)(symhdr.sh_size / sizeof(Elf_Sym)); 191 for (i = 0; i < nsyms; i++) { 231 if (++i >= nsyms)
|
/src/usr.bin/crunch/crunchide/ |
exec_aout.c | 50 int nsyms, ntextrel, ndatarel; variable in typeref:typename:int 150 nsyms = hdrp->a_syms / sizeof(struct nlist); 158 for(symp = symbase; symp < symbase + nsyms; symp++) {
|
exec_elf32.c | 183 Elf_Word j, nsyms; local in function:ELFNAMEEND 260 nsyms = shdrp[symtabsnum].sh_size / shdrp[symtabsnum].sh_entsize; 270 for (j = 0; j < nsyms; j++) {
|
/src/usr.sbin/kvm_mkdb/ |
nlist_aout.c | 109 int nsyms; local in function:create_knlist_aout 180 nsyms = ebuf.a_syms / sizeof(struct nlist); 181 while (nsyms--) {
|
nlist_elf32.c | 112 unsigned long i, nsyms; variable in typeref:typename:unsigned long 232 nsyms = symshdrp->sh_size / sizeof(*symp); 256 for (i = 0; i < nsyms; i++) {
|
/src/usr.sbin/tprof/ |
ksyms.c | 47 static size_t nsyms = 0; variable in typeref:typename:size_t 128 nsyms++; 129 syms = erealloc(syms, sizeof(*syms) * nsyms); 130 syms[nsyms - 1] = sym; 134 qsort(syms, nsyms, sizeof(*syms), compare_value); 136 *nsymp = nsyms; 154 hi = nsyms - 1; 168 assert(lo == nsyms - 1 || syms[lo]->value <= value); 170 for (i = lo; i < nsyms; i++) {
|
/src/lib/libc/gen/ |
nlist_elf32.c | 96 size_t mappedsize, nsyms; local in function:ELFNAMEEND 267 nsyms = (size_t)(symshdrp->sh_size / sizeof(*symp)); 287 for (i = 0; i < nsyms; i++) {
|
/src/usr.bin/elf2ecoff/ |
elf2ecoff.c | 631 int nsyms; local in function:elf_read_syms 633 nsyms = symsize / sizeof(Elf32_Sym); 637 saveRead(in, symoff, nsyms * sizeof(Elf32_Sym), 639 elfsymsp->nsymbols = nsyms; 641 for (i = 0; i < nsyms; i++) { 666 int nsyms, i; local in function:elf_symbol_table_to_ecoff 675 nsyms = ecoffsymtab.nsymbols; 688 symtabsize = nsyms * sizeof(struct ecoff_extsym); 692 write_ecoff_symhdr(out, ep, &symhdr, nsyms, symtaboff, 704 padding = symtabsize - (nsyms * sizeof(struct ecoff_extsym)) 758 int nsyms, idx; local in function:translate_syms [all...] |
/src/usr.bin/unifdef/ |
unifdef.c | 220 static int nsyms; /* number of symbols */ variable in typeref:typename:int 327 if (nsyms == 0 && !symlist) { 950 for (symind = 0; symind < nsyms; ++symind) { 971 if (nsyms >= MAXSYMS) 973 symind = nsyms++;
|
/src/sys/kern/ |
kern_ksyms.c | 336 int nsyms = symsize / sizeof(Elf_Sym); local in function:addsymtab 340 if ((nmap == ksyms_nmap) && (nsyms >= KSYMS_MAX_ID)) { 342 nsyms, KSYMS_MAX_ID); 345 nsyms = KSYMS_MAX_ID - 1; 359 tab->sd_nmapsize = nsyms; 367 memset(nmap, 0, nsyms * sizeof(uint32_t)); 375 for (i = n = 0; i < nsyms; i++) {
|