Home
last modified time | relevance | path

Searched refs:list (Results 1 – 25 of 376) sorted by relevance

12345678910>>...16

/toolchain/binutils/binutils-2.25/binutils/
Darsup.c36 (bfd *, void (*function) (bfd *, bfd *), struct list *);
48 map_over_list (bfd *arch, void (*function) (bfd *, bfd *), struct list *list) in map_over_list() argument
52 if (list == NULL) in map_over_list()
66 struct list *ptr; in map_over_list()
73 for (ptr = list; ptr; ptr = ptr->next) in map_over_list()
103 ar_directory (char *ar_name, struct list *list, char *output) in ar_directory() argument
121 map_over_list (arch, ar_directory_doer, list); in ar_directory()
226 ar_addlib (char *name, struct list *list) in ar_addlib() argument
239 map_over_list (arch, ar_addlib_doer, list); in ar_addlib()
246 ar_addmod (struct list *list) in ar_addmod() argument
[all …]
Darsup.h21 struct list { struct
23 struct list *next; argument
32 void ar_replace (struct list *);
34 void ar_delete (struct list *);
42 void ar_directory (char *, struct list *, char *);
44 void ar_addmod (struct list *);
46 void ar_addlib (char *, struct list *);
50 void ar_extract (struct list *);
Darparse.y39 struct list *list ; member
62 %type <list> modulelist
63 %type <list> modulename
173 { struct list *n = (struct list *) malloc(sizeof(struct list));
DMakefile.in217 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
219 for p in $$list; do echo "$$p $$p"; done | \
685 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
686 for p in $$list; do echo "$$p $$p"; done | \
709 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
710 files=`for p in $$list; do echo "$$p"; done | \
713 test -n "$$list" || exit 0; \
718 @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
719 echo " rm -f" $$list; \
720 rm -f $$list || exit $$?; \
[all …]
Ddlltool.c384 dll_name_list_type * list; member
3286 dll_name_list_append (dll_name_list_type * list, bfd_byte * data) in dll_name_list_append() argument
3291 if (! list || ! list->tail) in dll_name_list_append()
3303 list->tail->next = entry; in dll_name_list_append()
3304 list->tail = entry; in dll_name_list_append()
3310 dll_name_list_count (dll_name_list_type * list) in dll_name_list_count() argument
3316 if (! list || ! list->head) in dll_name_list_count()
3319 p = list->head; in dll_name_list_count()
3332 dll_name_list_print (dll_name_list_type * list) in dll_name_list_print() argument
3337 if (! list || ! list->head) in dll_name_list_print()
[all …]
/toolchain/binutils/binutils-2.25/gas/
Dlisting.c706 listing_page (list_info_type *list) in listing_page() argument
719 while (c != 0 && list) in listing_page()
721 if (list->edict == EDICT_SBTTL && !had_subtitle) in listing_page()
724 subtitle = list->edict_arg; in listing_page()
726 if (list->edict == EDICT_TITLE && !had_title) in listing_page()
729 title = list->edict_arg; in listing_page()
731 list = list->next; in listing_page()
752 emit_line (list_info_type * list, const char * format, ...) in emit_line() argument
760 listing_page (list); in emit_line()
766 calc_hex (list_info_type *list) in calc_hex() argument
[all …]
Dhash.c141 struct hash_entry **list; in hash_lookup() local
163 list = table->table + hindex; in hash_lookup()
166 *plist = list; in hash_lookup()
169 for (p = *list; p != NULL; p = p->next) in hash_lookup()
186 p->next = *list; in hash_lookup()
187 *list = p; in hash_lookup()
209 struct hash_entry **list; in hash_insert() local
212 p = hash_lookup (table, key, strlen (key), &list, &hash); in hash_insert()
225 p->next = *list; in hash_insert()
226 *list = p; in hash_insert()
[all …]
/toolchain/binutils/binutils-2.25/gprof/
DMakefile.in144 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
146 for p in $$list; do echo "$$p $$p"; done | \
405 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
406 for p in $$list; do echo "$$p $$p"; done | \
429 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
430 files=`for p in $$list; do echo "$$p"; done | \
433 test -n "$$list" || exit 0; \
438 @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
439 echo " rm -f" $$list; \
440 rm -f $$list || exit $$?; \
[all …]
Dsearch_list.c28 search_list_append (Search_List *list, const char *paths) in search_list_append() argument
52 if (list->tail) in search_list_append()
53 list->tail->next = new_el; in search_list_append()
55 list->head = new_el; in search_list_append()
57 list->tail = new_el; in search_list_append()
/toolchain/binutils/binutils-2.25/gas/doc/
DMakefile.in107 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
109 for p in $$list; do echo "$$p $$p"; done | \
443 @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
444 for p in $$list; do \
452 @list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
453 for p in $$list; do \
464 list='$(INFO_DEPS)'; \
465 for file in $$list; do \
473 @list='$(INFO_DEPS)'; \
474 for file in $$list; do \
[all …]
/toolchain/binutils/binutils-2.25/bfd/
Delf-attrs.c89 obj_attribute_list *list; in vendor_obj_attr_size() local
101 for (list = elf_other_obj_attributes (abfd)[vendor]; in vendor_obj_attr_size()
102 list; in vendor_obj_attr_size()
103 list = list->next) in vendor_obj_attr_size()
104 size += obj_attr_size (list->tag, &list->attr); in vendor_obj_attr_size()
175 obj_attribute_list *list; in vendor_set_obj_attr_contents() local
198 for (list = elf_other_obj_attributes (abfd)[vendor]; in vendor_set_obj_attr_contents()
199 list; in vendor_set_obj_attr_contents()
200 list = list->next) in vendor_set_obj_attr_contents()
201 p = write_obj_attribute (p, list->tag, &list->attr); in vendor_set_obj_attr_contents()
[all …]
Dverilog.c216 verilog_data_list_type *list) in verilog_write_section() argument
219 bfd_byte *location = list->data; in verilog_write_section()
221 verilog_write_address (abfd, list->where); in verilog_write_section()
222 while (octets_written < list->size) in verilog_write_section()
224 unsigned int octets_this_chunk = list->size - octets_written; in verilog_write_section()
245 verilog_data_list_type *list; in verilog_write_object_contents() local
248 list = tdata->head; in verilog_write_object_contents()
250 while (list != (verilog_data_list_type *) NULL) in verilog_write_object_contents()
252 if (! verilog_write_section (abfd, tdata, list)) in verilog_write_object_contents()
254 list = list->next; in verilog_write_object_contents()
/toolchain/binutils/binutils-2.25/binutils/doc/
DMakefile.in110 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
112 for p in $$list; do echo "$$p $$p"; done | \
417 @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
418 for p in $$list; do \
426 @list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
427 for p in $$list; do \
438 list='$(INFO_DEPS)'; \
439 for file in $$list; do \
447 @list='$(INFO_DEPS)'; \
448 for file in $$list; do \
[all …]
/toolchain/binutils/binutils-2.25/opcodes/
Daarch64-gen.c61 opcode_node *list; member
347 bittree->list = opcode; in divide_table_1()
404 assert (bittree->list != NULL); in print_decision_tree_1()
409 get_aarch64_opcode (bittree->list)->name); in print_decision_tree_1()
411 real_index (bittree->list->index)); in print_decision_tree_1()
466 assert (bittree->list != NULL); in print_find_next_opcode_1()
468 if (bittree->list->next != NULL) in print_find_next_opcode_1()
470 opcode_node *list = bittree->list; in print_find_next_opcode_1() local
471 while (list != NULL) in print_find_next_opcode_1()
473 const aarch64_opcode *curr = get_aarch64_opcode (list); in print_find_next_opcode_1()
[all …]
/toolchain/binutils/binutils-2.25/gold/
DMakefile.in218 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
220 for p in $$list; do echo "$$p $$p"; done | \
882 list='$(SUBDIRS)'; for subdir in $$list; do \
907 distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
908 *) list='$(SUBDIRS)' ;; \
910 rev=''; for subdir in $$list; do \
928 list='$(SUBDIRS)'; for subdir in $$list; do \
932 list='$(SUBDIRS)'; for subdir in $$list; do \
937 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
938 unique=`for i in $$list; do \
[all …]
/toolchain/binutils/binutils-2.25/bfd/doc/
DMakefile.in116 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
118 for p in $$list; do echo "$$p $$p"; done | \
486 @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
487 for p in $$list; do \
495 @list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
496 for p in $$list; do \
507 list='$(INFO_DEPS)'; \
508 for file in $$list; do \
516 @list='$(INFO_DEPS)'; \
517 for file in $$list; do \
[all …]
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
Dlist-textfirst.l1 GAS for MMIX .*/list-textfirst\.s page 1
10 GAS for MMIX .*/list-textfirst\.s page 2
14 .*/list-textfirst\.s:2 \.data:0000000000000000 here
15 .*/list-textfirst\.s:5 \.text:0000000000000000 there
Dlist-pseudoints.l1 GAS for MMIX .*/list-pseudoints.s page 1
12 GAS for MMIX .*/list-pseudoints.s page 2
16 .*/list-pseudoints.s:1 .text:0000000000000000 start
17 .*/list-pseudoints.s:3 .text:0000000000000004 start2
Dlist-insns.l1 GAS for MMIX .*/list-insns.s page 1
61 GAS for MMIX .*/list-insns.s page 2
121 GAS for MMIX .*/list-insns.s page 3
181 GAS for MMIX .*/list-insns.s page 4
241 GAS for MMIX .*/list-insns.s page 5
295 GAS for MMIX .*/list-insns.s page 6
299 .*/list-insns.s:7 .text:0000000000000000 Main
/toolchain/binutils/binutils-2.25/ld/emultempl/
Dlnk960.em52 append (lib_list_type ***list, char *name)
58 **list = element;
59 *list = &element->next;
102 add_on (lib_list_type *list, lang_input_file_enum_type search)
104 while (list)
106 lang_add_input_file (list->name, search, (char *) NULL);
107 list = list->next;
118 /* if there has been no hll list then add our own */
284 NULL, /* list options */
/toolchain/binutils/binutils-2.25/gas/config/
Dobj-elf.c2247 struct group_list *list = (struct group_list *) inf; in build_group_lists() local
2258 elem_idx = (unsigned int *) hash_find (list->indexes, group_name); in build_group_lists()
2261 elf_next_in_group (sec) = list->head[*elem_idx]; in build_group_lists()
2262 list->head[*elem_idx] = sec; in build_group_lists()
2263 list->elt_count[*elem_idx] += 1; in build_group_lists()
2269 i = list->num_group; in build_group_lists()
2273 list->head = (asection **) xrealloc (list->head, in build_group_lists()
2274 newsize * sizeof (*list->head)); in build_group_lists()
2275 list->elt_count = (unsigned int *) in build_group_lists()
2276 xrealloc (list->elt_count, newsize * sizeof (*list->elt_count)); in build_group_lists()
[all …]
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
Darmv1-bad.l7 [^:]*:9: Warning: writeback of base register when in register list is UNPREDICTABLE
9 [^:]*:12: Warning: if writeback register is in list, it must be the lowest reg in the list
/toolchain/binutils/binutils-2.25/config/
Dld-symbolic.m427 dnl Set DYNAMIC_LIST_CPP_NEW_LDFLAGS to --dynamic-list-cpp-new for GNU
30 [AC_CACHE_CHECK([if the GNU linker ($LD) supports --dynamic-list-cpp-new],
36 if $LD --help 2>&1 </dev/null | grep dynamic-list-cpp-new 1>&5; then
41 DYNAMIC_LIST_CPP_NEW_LDFLAGS="$SYMBOLIC_LDFLAGS -Wl,--dynamic-list-cpp-new"
/toolchain/binutils/binutils-2.25/ld/
DMakefile.in168 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
170 for p in $$list; do echo "$$p $$p"; done | \
817 GENERATED_HFILES = ldgram.h ldemul-list.h deffilep.h
902 ldemul-list.h crtbegin.@OBJEXT@ crtend.@OBJEXT@ ld.log ld.sum
973 @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
984 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
985 for p in $$list; do echo "$$p $$p"; done | \
1008 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
1009 files=`for p in $$list; do echo "$$p"; done | \
1012 test -n "$$list" || exit 0; \
[all …]
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
Dsubsym.s28 .asg "1,2,3", list
30 .word $ismember(SYMBOL,list) ; 1
32 .word list ; now 2,3

12345678910>>...16