Searched refs:sym (Results 1 - 25 of 443) sorted by relevance

1234567891011>>

/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/common/
H A Dsymbol.c35 ignore_symbol(GElf_Sym *sym, const char *name) argument
37 uchar_t type = GELF_ST_TYPE(sym->st_info);
43 if (sym->st_shndx == SHN_UNDEF || sym->st_name == 0)
58 if (type == STT_OBJECT && sym->st_shndx == SHN_ABS &&
59 sym->st_value == 0)
H A Dsymbol.h38 int ignore_symbol(GElf_Sym *sym, const char *name);
/freebsd-10.0-release/contrib/gcc/
H A Dmkmap-flat.awk80 sym = prefix $1;
82 delete export[sym];
84 export[sym] = 1;
89 for (sym in export)
90 if (def[sym])
91 print sym;
H A Dmkmap-symver.awk84 sym = prefix $1;
86 ver[sym] = thislib;
88 delete ver[sym];
110 for (sym in ver)
111 if ((ver[sym] == lib) && (sym in def))
119 printf("\t%s;\n", sym);
H A Dtlink.c344 symbol *sym;
348 sym = symbol_hash_lookup (name, true);
351 if (sym->file == NULL)
355 symbol_push (sym);
356 sym->file = f;
357 sym->chosen = chosen;
363 if (sym->chosen && sym->file != f)
365 if (sym->chosen == 1)
366 file_push (sym
340 symbol *sym; local
426 symbol *sym = symbol_hash_lookup (line + 2, false); local
587 symbol *sym; local
615 symbol *sym; local
[all...]
/freebsd-10.0-release/crypto/openssl/util/
H A Dmkfiles.pl87 my %sym;
120 $o =~ s/\$[({]([^)}]+)[)}]/$top{$1} or $sym{$1}/ge;
121 $sym{$s}=($top{$s} or $o);
127 foreach (sort keys %sym)
129 print "$_=$sym{$_}\n";
131 if ($dir eq "." && defined($sym{"BUILDENV"}))
133 foreach (split(' ',$sym{"BUILDENV"}))
136 $top{$1}=$sym{$1};
H A Dfiles.pl35 $o =~ s/\$[({]([^)}]+)[)}]/$sym{$1}/g;
36 $sym{$s}=$o;
42 if ($sym{'TOP'} eq ".")
48 $n=split(/\//,$sym{'TOP'});
57 foreach (sort keys %sym)
59 print "$_=$sym{$_}\n";
/freebsd-10.0-release/lib/libproc/test/t3-name2sym/
H A Dt3-name2sym.c43 GElf_Sym sym; local
46 memset(&sym, 0, sizeof(sym));
47 assert(proc_name2sym(phdl, "ld-elf.so.1", "r_debug_state", &sym) == 0);
48 printf("0x%lx\n", sym.st_value);
49 assert(proc_name2sym(phdl, "t3-name2sym", "main", &sym) == 0);
50 printf("0x%lx\n", sym.st_value);
/freebsd-10.0-release/sys/sys/
H A Dlinker_set.h47 #define __MAKE_SET(set, sym) \
50 static void const * const __set_##set##_sym_##sym \
51 __section("set_" #set) __used = &sym
56 #define __MAKE_SET(set, sym) extern void const * const (__set_##set##_sym_##sym)
62 #define TEXT_SET(set, sym) __MAKE_SET(set, sym)
63 #define DATA_SET(set, sym) __MAKE_SET(set, sym)
64 #define BSS_SET(set, sym) __MAKE_SE
[all...]
/freebsd-10.0-release/contrib/binutils/gas/config/
H A Dobj-aout.c30 obj_aout_frob_symbol (symbolS *sym, int *punt ATTRIBUTE_UNUSED) argument
36 flags = symbol_get_bfdsym (sym)->flags;
37 desc = aout_symbol (symbol_get_bfdsym (sym))->desc;
38 type = aout_symbol (symbol_get_bfdsym (sym))->type;
39 other = aout_symbol (symbol_get_bfdsym (sym))->other;
40 sec = S_GET_SEGMENT (sym);
49 S_SET_SEGMENT (sym, sec);
72 symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
84 if (S_IS_COMMON (sym))
86 S_GET_NAME (sym));
187 symbolS *sym; local
221 obj_aout_s_get_other(symbolS *sym) argument
227 obj_aout_s_set_other(symbolS *sym, int o) argument
250 obj_aout_s_get_desc(symbolS *sym) argument
256 obj_aout_s_set_desc(symbolS *sym, int d) argument
262 obj_aout_s_get_type(symbolS *sym) argument
268 obj_aout_s_set_type(symbolS *sym, int t) argument
[all...]
/freebsd-10.0-release/lib/libc/include/
H A Dcompat.h38 #define __sym_compat(sym,impl,verid) \
39 .symver impl, sym@verid
/freebsd-10.0-release/sys/ddb/
H A Ddb_main.c62 X_db_line_at_pc(db_symtab_t *symtab, c_db_sym_t sym, char **file, int *line, argument
72 Elf_Sym *sym; local
78 sym = (Elf_Sym *)symtab->start;
79 while ((char *)sym < symtab->end) {
80 if (sym->st_name != 0 &&
81 !strcmp(symtab->private + sym->st_name, symbol))
82 return ((c_db_sym_t)sym);
83 sym++;
94 Elf_Sym *sym, *match; local
107 for (sym
144 X_db_sym_numargs(db_symtab_t *symtab, c_db_sym_t sym, int *nargp, char **argp) argument
151 X_db_symbol_values(db_symtab_t *symtab, c_db_sym_t sym, const char **namep, db_expr_t *valp) argument
[all...]
H A Ddb_sym.c60 static char *db_qualify(c_db_sym_t sym, char *symtabname);
61 static boolean_t db_symbol_is_ambiguous(c_db_sym_t sym);
198 db_qualify(sym, symtabname)
199 c_db_sym_t sym;
205 db_symbol_values(sym, &symname, 0);
229 c_db_sym_t sym; local
231 sym = db_lookup(name);
232 if (sym == C_DB_SYM_NULL)
234 db_symbol_values(sym, &name, valuep);
245 c_db_sym_t sym; local
271 c_db_sym_t sym; local
393 c_db_sym_t ret = C_DB_SYM_NULL, sym; local
[all...]
/freebsd-10.0-release/sys/modules/sym/
H A DMakefile3 .PATH: ${.CURDIR}/../../dev/sym
5 KMOD= sym
/freebsd-10.0-release/contrib/gdb/gdb/
H A Ddictionary.h86 extern void dict_add_symbol (struct dictionary *dict, struct symbol *sym);
151 #define ALL_DICT_SYMBOLS(dict, iter, sym) \
152 for ((sym) = dict_iterator_first ((dict), &(iter)); \
153 (sym); \
154 (sym) = dict_iterator_next (&(iter)))
H A Dstabsread.c351 struct symbol *sym;
368 sym = find_symbol_in_list (symbols, name, pp - name);
369 if (!sym)
382 sym = (struct symbol *)
386 memset (sym, 0, sizeof (struct symbol));
387 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
388 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
389 DEPRECATED_SYMBOL_NAME (sym) =
397 SYMBOL_TYPE (sym) =
402 SYMBOL_TYPE (sym)
350 struct symbol *sym; local
468 struct symbol *sym; member in struct:ref_map
498 ref_add(int refnum, struct symbol *sym, char *stabs, CORE_ADDR value) argument
583 struct symbol *sym; local
1560 struct symbol *sym = ppt->symbol[i]; local
3456 struct symbol *sym; local
4066 struct symbol *sym; local
4119 fix_common_block(struct symbol *sym, int valu) argument
4193 struct symbol *sym = ppt->symbol[i]; local
4230 struct symbol *sym, *prev; local
[all...]
H A Dcp-namespace.c375 struct symbol *sym; local
385 sym = lookup_namespace_scope (name, linkage_name, block,
388 if (sym != NULL)
389 return sym;
415 struct symbol *sym; local
427 sym = cp_lookup_symbol_namespace (current->inner,
433 if (sym != NULL)
434 return sym;
454 sym = lookup_symbol_file (concatenated_name, linkage_name,
457 return sym;
474 struct symbol *sym = NULL; local
542 struct symbol *sym = cp_lookup_symbol_namespace (parent_name, local
787 struct symbol *sym; local
810 dict_add_symbol (BLOCK_DICT (block), sym); local
829 struct symbol *sym; local
856 struct symbol *sym; local
[all...]
H A Delfread.c149 asymbol *sym; local
171 sym = symbol_table[i];
172 if (sym->name == NULL || *sym->name == '\0')
179 offset = ANOFFSET (objfile->section_offsets, sym->section->index);
181 && sym->section == &bfd_und_section
182 && (sym->flags & BSF_FUNCTION))
194 symaddr = sym->value;
199 ((char *) sym->name, symaddr,
200 mst_solib_trampoline, sym
[all...]
H A Ddictionary.c115 void (*add_symbol) (struct dictionary *dict, struct symbol *sym);
229 struct symbol *sym);
257 struct symbol *sym);
283 struct symbol *sym);
341 struct symbol *sym);
491 dict_add_symbol (struct dictionary *dict, struct symbol *sym) argument
493 (DICT_VECTOR (dict))->add_symbol (dict, sym);
563 add_symbol_nonexpandable (struct dictionary *dict, struct symbol *sym) argument
606 struct symbol *sym = DICT_HASHED_BUCKET (dict, i); local
608 if (sym !
626 struct symbol *sym; local
671 insert_symbol_hashed(struct dictionary *dict, struct symbol *sym) argument
699 add_symbol_hashed_expandable(struct dictionary *dict, struct symbol *sym) argument
731 struct symbol *sym, *next_sym; local
787 struct symbol *sym, *retval = NULL; local
821 add_symbol_linear_expandable(struct dictionary *dict, struct symbol *sym) argument
[all...]
/freebsd-10.0-release/lib/libz/
H A Dinftrees.c41 unsigned sym; /* index of code symbols */ local
109 for (sym = 0; sym < codes; sym++)
110 count[lens[sym]]++;
146 for (sym = 0; sym < codes; sym++)
147 if (lens[sym] != 0) work[offs[lens[sym]]
[all...]
/freebsd-10.0-release/cddl/lib/libdtrace/
H A Dlibproc_compat.h38 #define Pxlookup_by_addr(p, a, n, s, sym, i) \
39 proc_addr2sym(p, a, n, s, sym)
40 #define Pxlookup_by_name(p, l, s1, s2, sym, a) \
41 proc_name2sym((p), (s1), (s2), (sym))
/freebsd-10.0-release/libexec/rtld-elf/
H A Ddebug.c106 const Elf_Sym *sym; local
113 sym = obj->symtab + ELF_R_SYM(rel->r_info);
115 obj->strtab + sym->st_name,
117 (u_long)sym->st_value, (int)sym->st_size,
128 const Elf_Sym *sym; local
135 sym = obj->symtab + ELF_R_SYM(rela->r_info);
137 obj->strtab + sym->st_name,
139 (u_long)sym->st_value, (int)sym
[all...]
/freebsd-10.0-release/usr.bin/xlint/lint1/
H A Ddecl.c436 settdsym(type_t *tp, sym_t *sym) argument
442 tp->t_str->stdef = sym;
445 tp->t_enum->etdef = sym;
865 chktyp(sym_t *sym) argument
870 tpp = &sym->s_type;
879 !(to == NOTSPEC && sym->s_osdef)) {
926 if (sym->s_scl != ABSTRACT) {
927 if (sym->s_name == unnamed)
930 error(61, sym->s_name);
935 } else if (sym
1291 sym_t *arg, *sym; local
1357 chkfdef(sym_t *sym, int msg) argument
1378 dname(sym_t *sym) argument
1476 iname(sym_t *sym) argument
1694 ename(sym_t *sym, int val, int impl) argument
1856 cpuinfo(sym_t *sym, sym_t *rdsym) argument
2170 decl1arg(sym_t *sym, int initflg) argument
2588 chkinit(sym_t *sym) argument
2621 sym_t *sym; local
2668 decl1abs(sym_t *sym) argument
2709 setsflg(sym_t *sym) argument
2722 setuflg(sym_t *sym, int fcall, int szof) argument
2747 sym_t *sym; local
2765 chkusg1(int novar, sym_t *sym) argument
2807 chkvusg(int novar, sym_t *sym) argument
2892 chktusg(sym_t *sym) argument
2932 sym_t *sym; local
2957 chkglvar(sym_t *sym) argument
3004 glchksz(sym_t *sym) argument
[all...]
/freebsd-10.0-release/usr.bin/xlint/lint2/
H A Demit2.c140 outdef(hte_t *hte, sym_t *sym) argument
158 if (sym->s_va) {
160 outint(sym->s_nva);
162 if (sym->s_scfl) {
164 outint(sym->s_nscfl);
166 if (sym->s_prfl) {
168 outint(sym->s_nprfl);
171 outchar(sym->s_def == DEF ? 'd' : 't');
172 if (TP(sym->s_type)->t_tspec == FUNC) {
173 if (sym
193 sym_t *sym, *def; local
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinftrees.c43 unsigned sym; /* index of code symbols */ local
111 for (sym = 0; sym < codes; sym++)
112 count[lens[sym]]++;
148 for (sym = 0; sym < codes; sym++)
149 if (lens[sym] != 0) work[offs[lens[sym]]
[all...]

Completed in 151 milliseconds

1234567891011>>