Searched refs:symlist (Results 1 – 10 of 10) sorted by relevance
/openbsd/sys/dev/microcode/aic7xxx/ |
H A D | aicasm_symbol.h | 75 typedef SLIST_HEAD(symlist, symbol_node) symlist_t; 197 symlist_search(symlist_t *symlist, char *symname); 200 symlist_add(symlist_t *symlist, symbol_t *symbol, int how); 204 void symlist_free(symlist_t *symlist);
|
H A D | aicasm_symbol.c | 206 symlist_search(symlist_t *symlist, char *symname) in symlist_search() argument 210 curnode = SLIST_FIRST(symlist); in symlist_search() 220 symlist_add(symlist_t *symlist, symbol_t *symbol, int how) in symlist_add() argument 252 curnode = SLIST_FIRST(symlist); in symlist_add() 261 SLIST_INSERT_HEAD(symlist, newnode, links); in symlist_add() 290 SLIST_INSERT_HEAD(symlist, newnode, links); in symlist_add() 295 symlist_free(symlist_t *symlist) in symlist_free() argument 299 node1 = SLIST_FIRST(symlist); in symlist_free() 305 SLIST_INIT(symlist); in symlist_free()
|
H A D | aicasm.h | 77 extern struct symlist patch_functions;
|
/openbsd/usr.bin/lex/ |
H A D | dfa.c | 382 int symlist[CSIZE + 1]; in ntod() local 415 symlist[i] = false; in ntod() 621 sympartition (dset, dsize, symlist, duplist); in ntod() 624 if (symlist[sym]) { in ntod() 625 symlist[sym] = 0; in ntod() 1016 void sympartition (int ds[], int numstates, int symlist[], int duplist[]) in sympartition() argument 1047 symlist[ec] = 1; in sympartition() 1068 symlist[j] = 1; in sympartition() 1072 symlist[j] = 1; in sympartition() 1082 symlist[ich] = 1; in sympartition()
|
/openbsd/gnu/usr.bin/binutils-2.17/binutils/ |
H A D | objcopy.c | 40 struct symlist struct 43 struct symlist *next; argument 198 static struct symlist *strip_specific_list = NULL; 199 static struct symlist *strip_unneeded_list = NULL; 200 static struct symlist *keep_specific_list = NULL; 201 static struct symlist *localize_specific_list = NULL; 202 static struct symlist *globalize_specific_list = NULL; 204 static struct symlist *weaken_specific_list = NULL; 632 struct symlist *tmp_list; in add_specific_symbol() 634 tmp_list = xmalloc (sizeof (struct symlist)); in add_specific_symbol() [all …]
|
/openbsd/gnu/usr.bin/binutils/binutils/ |
H A D | objcopy.c | 39 struct symlist struct 42 struct symlist *next; argument 194 static struct symlist *strip_specific_list = NULL; 195 static struct symlist *keep_specific_list = NULL; 196 static struct symlist *localize_specific_list = NULL; 197 static struct symlist *keepglobal_specific_list = NULL; 198 static struct symlist *weaken_specific_list = NULL; 597 struct symlist *tmp_list; in add_specific_symbol() 599 tmp_list = xmalloc (sizeof (struct symlist)); in add_specific_symbol() 722 is_specified_symbol (const char *name, struct symlist *list) in is_specified_symbol() [all …]
|
/openbsd/usr.bin/unifdef/ |
H A D | unifdef.c | 170 static bool symlist; /* -s: output symbol list */ variable 337 symlist = true; in main() 340 symlist = symdepth = true; in main() 360 if (symlist && (ofilename != NULL || inplace || argc > 1)) in main() 700 if (symlist) in flushline() 1352 if (symlist) { in findsym()
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | coffread.c | 2028 struct pending **symlist; in coff_read_enum_type() local 2041 symlist = &local_symbols; in coff_read_enum_type() 2043 symlist = &file_symbols; in coff_read_enum_type() 2044 osyms = *symlist; in coff_read_enum_type() 2067 add_symbol_to_list (sym, symlist); in coff_read_enum_type() 2099 for (syms = *symlist, n = 0; syms; syms = syms->next) in coff_read_enum_type()
|
H A D | stabsread.c | 3414 struct pending **symlist; in read_enum_type() local 3425 symlist = &local_symbols; in read_enum_type() 3428 symlist = &file_symbols; in read_enum_type() 3429 osyms = *symlist; in read_enum_type() 3469 add_symbol_to_list (sym, symlist); in read_enum_type() 3496 for (syms = *symlist, n = nsyms - 1; syms; syms = syms->next) in read_enum_type()
|
H A D | hpread.c | 3091 struct pending **symlist, *osyms, *syms; in hpread_read_enum_type() local 3115 symlist = &file_symbols; in hpread_read_enum_type() 3116 osyms = *symlist; in hpread_read_enum_type() 3137 add_symbol_to_list (sym, symlist); in hpread_read_enum_type() 3157 for (syms = *symlist, n = 0; syms; syms = syms->next) in hpread_read_enum_type()
|