Home
last modified time | relevance | path

Searched defs:htab (Results 1 – 25 of 75) sorted by relevance

123

/dflybsd-src/contrib/gcc-8.0/include/
H A Dhashtab.h95 struct htab { struct
97 htab_hash hash_f; argument
100 htab_eq eq_f; argument
103 htab_del del_f; argument
118 of all calls of `htab_find_slot' for the hash table. */ argument
126 htab_alloc alloc_f; argument
127 htab_free free_f; argument
131 htab_alloc_with_arg alloc_with_arg_f; argument
132 htab_free_with_arg free_with_arg_f; argument
139 typedef struct htab *htab_t; argument
/dflybsd-src/contrib/binutils-2.34/include/
H A Dhashtab.h95 struct htab { struct
97 htab_hash hash_f; argument
100 htab_eq eq_f; argument
103 htab_del del_f; argument
118 of all calls of `htab_find_slot' for the hash table. */ argument
126 htab_alloc alloc_f; argument
127 htab_free free_f; argument
131 htab_alloc_with_arg alloc_with_arg_f; argument
132 htab_free_with_arg free_with_arg_f; argument
139 typedef struct htab *htab_t; argument
/dflybsd-src/contrib/binutils-2.27/include/
H A Dhashtab.h95 struct htab { struct
97 htab_hash hash_f; argument
100 htab_eq eq_f; argument
103 htab_del del_f; argument
118 of all calls of `htab_find_slot' for the hash table. */ argument
126 htab_alloc alloc_f; argument
127 htab_free free_f; argument
131 htab_alloc_with_arg alloc_with_arg_f; argument
132 htab_free_with_arg free_with_arg_f; argument
139 typedef struct htab *htab_t; argument
/dflybsd-src/contrib/gcc-4.7/include/
H A Dhashtab.h100 struct GTY(()) htab { struct
102 htab_hash hash_f; argument
105 htab_eq eq_f; argument
108 htab_del del_f; argument
123 of all calls of `htab_find_slot' for the hash table. */ argument
131 htab_alloc alloc_f; argument
132 htab_free free_f; argument
136 htab_alloc_with_arg alloc_with_arg_f; argument
137 htab_free_with_arg free_with_arg_f; argument
144 typedef struct htab *htab_t; argument
/dflybsd-src/contrib/gdb-7/include/
H A Dhashtab.h100 struct GTY(()) htab { struct
102 htab_hash hash_f; argument
105 htab_eq eq_f; argument
108 htab_del del_f; argument
123 of all calls of `htab_find_slot' for the hash table. */ argument
131 htab_alloc alloc_f; argument
132 htab_free free_f; argument
136 htab_alloc_with_arg alloc_with_arg_f; argument
137 htab_free_with_arg free_with_arg_f; argument
144 typedef struct htab *htab_t; argument
/dflybsd-src/contrib/gcc-8.0/libgomp/
H A Dhashtab.h69 struct htab { struct
87 typedef struct htab *htab_t; argument
171 htab_size (htab_t htab) in htab_size()
179 htab_elements (htab_t htab) in htab_elements()
212 htab_mod (hashval_t hash, htab_t htab) in htab_mod()
221 htab_mod_m2 (hashval_t hash, htab_t htab) in htab_mod_m2()
255 find_empty_slot_for_expand (htab_t htab, hashval_t hash) in find_empty_slot_for_expand()
289 htab_expand (htab_t htab) in htab_expand()
328 htab_find (htab_t htab, const hash_entry_type element) in htab_find()
371 htab_t htab = *htabp; in htab_find_slot() local
[all …]
/dflybsd-src/lib/libc/db/hash/
H A Dhash.h89 typedef struct htab { /* Memory resident data structure */ struct
90 HASHHDR hdr; /* Header */
91 int nsegs; /* Number of allocated segments */
92 int exsegs; /* Number of extra allocated
95 (*hash)(const void *, size_t);
96 int flags; /* Flag values */
97 int fp; /* File pointer */
98 char *tmp_buf; /* Temporary Buffer for BIG data */
99 char *tmp_key; /* Temporary Buffer for BIG keys */
100 BUFHEAD *cpage; /* Current page */
[all …]
/dflybsd-src/contrib/gcc-4.7/libiberty/
H A Dhashtab.c221 #define htab_size(htab) ((htab)->size) argument
231 #define htab_elements(htab) ((htab)->n_elements - (htab)->n_deleted) argument
270 htab_mod (hashval_t hash, htab_t htab) in htab_mod()
279 htab_mod_m2 (hashval_t hash, htab_t htab) in htab_mod_m2()
390 htab_set_functions_ex (htab_t htab, htab_hash hash_f, htab_eq eq_f, in htab_set_functions_ex()
421 htab_delete (htab_t htab) in htab_delete()
447 htab_empty (htab_t htab) in htab_empty()
490 find_empty_slot_for_expand (htab_t htab, hashval_t hash) in find_empty_slot_for_expand()
526 htab_expand (htab_t htab) in htab_expand()
594 htab_find_with_hash (htab_t htab, const PTR element, hashval_t hash) in htab_find_with_hash()
[all …]
/dflybsd-src/contrib/gdb-7/libiberty/
H A Dhashtab.c221 #define htab_size(htab) ((htab)->size) argument
231 #define htab_elements(htab) ((htab)->n_elements - (htab)->n_deleted) argument
270 htab_mod (hashval_t hash, htab_t htab) in htab_mod()
279 htab_mod_m2 (hashval_t hash, htab_t htab) in htab_mod_m2()
390 htab_set_functions_ex (htab_t htab, htab_hash hash_f, htab_eq eq_f, in htab_set_functions_ex()
421 htab_delete (htab_t htab) in htab_delete()
447 htab_empty (htab_t htab) in htab_empty()
490 find_empty_slot_for_expand (htab_t htab, hashval_t hash) in find_empty_slot_for_expand()
526 htab_expand (htab_t htab) in htab_expand()
594 htab_find_with_hash (htab_t htab, const PTR element, hashval_t hash) in htab_find_with_hash()
[all …]
/dflybsd-src/contrib/binutils-2.34/libiberty/
H A Dhashtab.c212 #define htab_size(htab) ((htab)->size) argument
222 #define htab_elements(htab) ((htab)->n_elements - (htab)->n_deleted) argument
261 htab_mod (hashval_t hash, htab_t htab) in htab_mod()
270 htab_mod_m2 (hashval_t hash, htab_t htab) in htab_mod_m2()
381 htab_set_functions_ex (htab_t htab, htab_hash hash_f, htab_eq eq_f, in htab_set_functions_ex()
412 htab_delete (htab_t htab) in htab_delete()
438 htab_empty (htab_t htab) in htab_empty()
481 find_empty_slot_for_expand (htab_t htab, hashval_t hash) in find_empty_slot_for_expand()
517 htab_expand (htab_t htab) in htab_expand()
585 htab_find_with_hash (htab_t htab, const PTR element, hashval_t hash) in htab_find_with_hash()
[all …]
/dflybsd-src/contrib/binutils-2.27/libiberty/
H A Dhashtab.c213 #define htab_size(htab) ((htab)->size) argument
223 #define htab_elements(htab) ((htab)->n_elements - (htab)->n_deleted) argument
262 htab_mod (hashval_t hash, htab_t htab) in htab_mod()
271 htab_mod_m2 (hashval_t hash, htab_t htab) in htab_mod_m2()
382 htab_set_functions_ex (htab_t htab, htab_hash hash_f, htab_eq eq_f, in htab_set_functions_ex()
413 htab_delete (htab_t htab) in htab_delete()
439 htab_empty (htab_t htab) in htab_empty()
482 find_empty_slot_for_expand (htab_t htab, hashval_t hash) in find_empty_slot_for_expand()
518 htab_expand (htab_t htab) in htab_expand()
586 htab_find_with_hash (htab_t htab, const PTR element, hashval_t hash) in htab_find_with_hash()
[all …]
/dflybsd-src/contrib/gcc-8.0/libiberty/
H A Dhashtab.c212 #define htab_size(htab) ((htab)->size) argument
222 #define htab_elements(htab) ((htab)->n_elements - (htab)->n_deleted) argument
261 htab_mod (hashval_t hash, htab_t htab) in htab_mod()
270 htab_mod_m2 (hashval_t hash, htab_t htab) in htab_mod_m2()
381 htab_set_functions_ex (htab_t htab, htab_hash hash_f, htab_eq eq_f, in htab_set_functions_ex()
412 htab_delete (htab_t htab) in htab_delete()
438 htab_empty (htab_t htab) in htab_empty()
481 find_empty_slot_for_expand (htab_t htab, hashval_t hash) in find_empty_slot_for_expand()
517 htab_expand (htab_t htab) in htab_expand()
585 htab_find_with_hash (htab_t htab, const PTR element, hashval_t hash) in htab_find_with_hash()
[all …]
/dflybsd-src/contrib/binutils-2.34/bfd/
H A Delfxx-x86.c50 struct elf_x86_link_hash_table *htab; in _bfd_x86_elf_set_tls_module_base() local
89 struct elf_x86_link_hash_table *htab; in elf_x86_allocate_dynrelocs() local
610 _bfd_elf_x86_get_local_sym_hash (struct elf_x86_link_hash_table *htab, in _bfd_elf_x86_get_local_sym_hash()
674 struct elf_link_hash_table *htab in _bfd_x86_elf_link_hash_newfunc() local
730 struct elf_x86_link_hash_table *htab in elf_x86_link_hash_table_free() local
906 struct elf_x86_link_hash_table *htab; in _bfd_x86_elf_link_check_relocs() local
961 struct elf_x86_link_hash_table *htab; in _bfd_x86_elf_size_dynamic_sections() local
1408 struct elf_x86_link_hash_table *htab; in _bfd_x86_elf_finish_dynamic_sections() local
1636 struct elf_x86_link_hash_table *htab; in _bfd_x86_elf_always_size_sections() local
1777 struct elf_x86_link_hash_table *htab, in _bfd_x86_elf_link_fixup_ifunc_symbol()
[all …]
H A Delf-ifunc.c39 struct elf_link_hash_table *htab = elf_hash_table (info); in _bfd_elf_create_ifunc_sections() local
120 struct elf_link_hash_table *htab; in _bfd_elf_allocate_ifunc_dyn_relocs() local
H A Delf-eh-frame.c528 struct elf_link_hash_table *htab; in _bfd_elf_parse_eh_frame_entry() local
593 struct elf_link_hash_table *htab; in _bfd_elf_parse_eh_frame() local
1621 struct elf_link_hash_table *htab; in _bfd_elf_discard_section_eh_frame_hdr() local
1707 struct elf_link_hash_table *htab; in _bfd_elf_maybe_strip_eh_frame_hdr() local
1924 struct elf_link_hash_table *htab; in _bfd_elf_write_section_eh_frame() local
2356 struct elf_link_hash_table *htab; in write_compact_eh_frame_hdr() local
2409 struct elf_link_hash_table *htab; in write_dwarf_eh_frame_hdr() local
2525 struct elf_link_hash_table *htab; in _bfd_elf_write_section_eh_frame_hdr() local
H A Delf64-x86-64.c1033 struct elf_x86_link_hash_table *htab; in elf_x86_64_check_tls_transition() local
1360 struct elf_x86_link_hash_table *htab; in elf_x86_64_tls_transition() local
1492 struct elf_x86_link_hash_table *htab; in elf_x86_64_convert_load_reloc() local
1810 struct elf_x86_link_hash_table *htab; in elf_x86_64_check_relocs() local
2352 struct elf_link_hash_table *htab = elf_hash_table (info); in elf_x86_64_tpoff() local
2377 struct elf_x86_link_hash_table *htab; in elf_x86_64_relocate_section() local
4054 struct elf_x86_link_hash_table *htab; in elf_x86_64_finish_dynamic_symbol() local
4477 struct elf_x86_link_hash_table *htab in elf_x86_64_reloc_type_class() local
4522 struct elf_x86_link_hash_table *htab; in elf_x86_64_finish_dynamic_sections() local
4632 struct elf_x86_link_hash_table *htab in elf_x86_64_output_arch_local_syms() local
[all …]
/dflybsd-src/contrib/gdb-7/bfd/
H A Delf-ifunc.c40 struct elf_link_hash_table *htab = elf_hash_table (info); in _bfd_elf_create_ifunc_sections() local
116 struct elf_link_hash_table *htab = elf_hash_table (info); in _bfd_elf_create_ifunc_dyn_reloc() local
166 struct elf_link_hash_table *htab; in _bfd_elf_allocate_ifunc_dyn_relocs() local
H A Delf32-i386.c830 #define elf_i386_compute_jump_table_size(htab) \ argument
894 elf_i386_get_local_sym_hash (struct elf_i386_link_hash_table *htab, in elf_i386_get_local_sym_hash()
972 struct elf_i386_link_hash_table *htab in elf_i386_link_hash_table_free() local
989 struct elf_i386_link_hash_table *htab; in elf_i386_create_dynamic_sections() local
1378 struct elf_i386_link_hash_table *htab; in elf_i386_tls_transition() local
1416 struct elf_i386_link_hash_table *htab; in elf_i386_check_relocs() local
1856 struct elf_i386_link_hash_table *htab; in elf_i386_gc_sweep_hook() local
2006 struct elf_i386_link_hash_table *htab; in elf_i386_adjust_dynamic_symbol() local
2177 struct elf_i386_link_hash_table *htab; in elf_i386_allocate_dynrelocs() local
2523 struct elf_i386_link_hash_table *htab; in elf_i386_convert_mov_to_lea() local
[all …]
H A Delf64-x86-64.c780 #define elf_x86_64_compute_jump_table_size(htab) \ argument
845 elf_x86_64_get_local_sym_hash (struct elf_x86_64_link_hash_table *htab, in elf_x86_64_get_local_sym_hash()
940 struct elf_x86_64_link_hash_table *htab in elf_x86_64_link_hash_table_free() local
958 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_create_dynamic_sections() local
1092 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_check_tls_transition() local
1349 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_tls_transition() local
1386 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_check_relocs() local
1912 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_gc_sweep_hook() local
2067 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_adjust_dynamic_symbol() local
2237 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_allocate_dynrelocs() local
[all …]
/dflybsd-src/contrib/mdocml/
H A Dmansearch.c94 struct ohash *htab; in mansearch() local
237 manmerge(struct expr *e, struct ohash *htab) in manmerge()
252 manmerge_term(struct expr *e, struct ohash *htab) in manmerge_term()
311 manmerge_or(struct expr *e, struct ohash *htab) in manmerge_or()
321 manmerge_and(struct expr *e, struct ohash *htab) in manmerge_and()
/dflybsd-src/contrib/binutils-2.27/bfd/
H A Delf32-i386.c898 #define elf_i386_compute_jump_table_size(htab) \ argument
968 elf_i386_get_local_sym_hash (struct elf_i386_link_hash_table *htab, in elf_i386_get_local_sym_hash()
1013 struct elf_i386_link_hash_table *htab in elf_i386_link_hash_table_free() local
1066 struct elf_i386_link_hash_table *htab; in elf_i386_create_dynamic_sections() local
1543 struct elf_i386_link_hash_table *htab; in elf_i386_tls_transition() local
1599 struct elf_i386_link_hash_table *htab; in elf_i386_convert_load_reloc() local
1837 struct elf_i386_link_hash_table *htab; in elf_i386_check_relocs() local
2431 struct elf_i386_link_hash_table *htab; in elf_i386_adjust_dynamic_symbol() local
2610 struct elf_i386_link_hash_table *htab; in elf_i386_allocate_dynrelocs() local
3067 struct elf_i386_link_hash_table *htab; in elf_i386_convert_load() local
[all …]
H A Delf32-or1k.c808 struct elf_or1k_link_hash_table *htab = or1k_elf_hash_table (info); in or1k_elf_relocate_section() local
1370 struct elf_or1k_link_hash_table *htab; in create_got_section() local
1417 struct elf_or1k_link_hash_table *htab; in or1k_elf_check_relocs() local
1725 struct elf_or1k_link_hash_table *htab; in or1k_elf_finish_dynamic_sections() local
1859 struct elf_or1k_link_hash_table *htab; in or1k_elf_finish_dynamic_symbol() local
2055 struct elf_or1k_link_hash_table *htab; in or1k_elf_adjust_dynamic_symbol() local
2189 struct elf_or1k_link_hash_table *htab; in allocate_dynrelocs() local
2417 struct elf_or1k_link_hash_table *htab; in or1k_elf_size_dynamic_sections() local
2639 struct elf_or1k_link_hash_table *htab; in or1k_elf_create_dynamic_sections() local
H A Delf64-x86-64.c920 #define elf_x86_64_compute_jump_table_size(htab) \ argument
993 elf_x86_64_get_local_sym_hash (struct elf_x86_64_link_hash_table *htab, in elf_x86_64_get_local_sym_hash()
1038 struct elf_x86_64_link_hash_table *htab in elf_x86_64_link_hash_table_free() local
1109 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_create_dynamic_sections() local
1287 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_check_tls_transition() local
1630 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_tls_transition() local
1739 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_convert_load_reloc() local
2134 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_check_relocs() local
2833 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_adjust_dynamic_symbol() local
3012 struct elf_x86_64_link_hash_table *htab; in elf_x86_64_allocate_dynrelocs() local
[all …]
H A Delf-eh-frame.c515 struct elf_link_hash_table *htab; in _bfd_elf_parse_eh_frame_entry() local
580 struct elf_link_hash_table *htab; in _bfd_elf_parse_eh_frame() local
1426 struct elf_link_hash_table *htab; in _bfd_elf_discard_section_eh_frame_hdr() local
1512 struct elf_link_hash_table *htab; in _bfd_elf_maybe_strip_eh_frame_hdr() local
1726 struct elf_link_hash_table *htab; in _bfd_elf_write_section_eh_frame() local
2166 struct elf_link_hash_table *htab; in write_compact_eh_frame_hdr() local
2219 struct elf_link_hash_table *htab; in write_dwarf_eh_frame_hdr() local
2336 struct elf_link_hash_table *htab; in _bfd_elf_write_section_eh_frame_hdr() local
/dflybsd-src/contrib/binutils-2.34/libctf/
H A Dctf-hash.c44 struct htab *htab; member
148 ctf_hashtab_lookup (struct htab *htab, const void *key, enum insert_option insert) in ctf_hashtab_lookup()
155 ctf_hashtab_insert (struct htab *htab, void *key, void *value, in ctf_hashtab_insert()
259 struct htab *htab; member

123