Searched refs:tmp_list (Results 1 – 6 of 6) sorted by relevance
/openbsd/gnu/usr.bin/binutils/binutils/ |
H A D | objcopy.c | 597 struct symlist *tmp_list; in add_specific_symbol() local 599 tmp_list = xmalloc (sizeof (struct symlist)); in add_specific_symbol() 600 tmp_list->name = name; in add_specific_symbol() 601 tmp_list->next = *list; in add_specific_symbol() 602 *list = tmp_list; in add_specific_symbol() 724 struct symlist *tmp_list; in is_specified_symbol() local 728 for (tmp_list = list; tmp_list; tmp_list = tmp_list->next) in is_specified_symbol() 729 if (*(tmp_list->name) != '!') in is_specified_symbol() 731 if (!fnmatch (tmp_list->name, name, 0)) in is_specified_symbol() 742 for (tmp_list = list; tmp_list; tmp_list = tmp_list->next) in is_specified_symbol() [all …]
|
/openbsd/gnu/usr.bin/binutils-2.17/binutils/ |
H A D | objcopy.c | 632 struct symlist *tmp_list; in add_specific_symbol() local 634 tmp_list = xmalloc (sizeof (struct symlist)); in add_specific_symbol() 635 tmp_list->name = name; in add_specific_symbol() 636 tmp_list->next = *list; in add_specific_symbol() 637 *list = tmp_list; in add_specific_symbol() 759 struct symlist *tmp_list; in is_specified_symbol() local 763 for (tmp_list = list; tmp_list; tmp_list = tmp_list->next) in is_specified_symbol() 764 if (*(tmp_list->name) != '!') in is_specified_symbol() 766 if (!fnmatch (tmp_list->name, name, 0)) in is_specified_symbol() 777 for (tmp_list = list; tmp_list; tmp_list = tmp_list->next) in is_specified_symbol() [all …]
|
/openbsd/gnu/llvm/libcxx/utils/libcxx/sym_check/ |
H A D | extract.py | 64 tmp_list = list(sorted(set(final_syms))) 66 return util.read_syms_from_list(tmp_list)
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | hpread.c | 3601 struct nextfield *list = 0, *tmp_list = 0; in hpread_read_struct_type() local 4278 for (n = nfields, tmp_list = list; tmp_list; tmp_list = tmp_list->next) in hpread_read_struct_type() 4281 TYPE_FIELD (type, n) = tmp_list->field; in hpread_read_struct_type() 4298 for (n = nfields, tmp_list = list; tmp_list; tmp_list = tmp_list->next) in hpread_read_struct_type() 4301 if (tmp_list->attributes) in hpread_read_struct_type()
|
/openbsd/sys/net/ |
H A D | pf_ioctl.c | 310 LIST_HEAD(, pf_trans) tmp_list; in pfclose() 313 LIST_INIT(&tmp_list); in pfclose() 318 LIST_INSERT_HEAD(&tmp_list, w, pft_entry); in pfclose() 323 while ((w = LIST_FIRST(&tmp_list)) != NULL) { in pfclose()
|
/openbsd/gnu/llvm/lldb/source/Interpreter/ |
H A D | CommandInterpreter.cpp | 1291 StringList tmp_list; in GetUserCommandObject() local 1292 StringList *matches_ptr = matches ? matches : &tmp_list; in GetUserCommandObject()
|