Searched refs:hash_tbl (Results 1 – 6 of 6) sorted by relevance
/netbsd-src/usr.sbin/bootp/common/ |
H A D | hash.h | 101 typedef struct hash_tblstruct hash_tbl; typedef 123 extern hash_tbl *hash_Init(u_int tablesize); 125 extern void hash_Reset(hash_tbl *tbl, hash_freefp); 129 extern int hash_Exists(hash_tbl *, u_int code, 132 extern int hash_Insert(hash_tbl *, u_int code, hash_cmpfp, 135 extern int hash_Delete(hash_tbl *, u_int code, 139 extern hash_datum *hash_Lookup(hash_tbl *, u_int code, 142 extern hash_datum *hash_FirstEntry(hash_tbl *); 144 extern hash_datum *hash_NextEntry(hash_tbl *);
|
H A D | hash.c | 74 hash_tbl * 77 hash_tbl *hashtblptr; in hash_Init() 81 totalsize = sizeof(hash_tbl) in hash_Init() 83 hashtblptr = (hash_tbl *) malloc(totalsize); in hash_Init() 124 hash_Reset(hash_tbl *hashtable, hash_freefp free_data) in hash_Reset() 181 hash_Exists(hash_tbl *hashtable, unsigned int hashcode, hash_cmpfp compare, in hash_Exists() 209 hash_Insert(hash_tbl *hashtable, unsigned int hashcode, hash_cmpfp compare, in hash_Insert() 237 hash_Delete(hash_tbl *hashtable, unsigned int hashcode, hash_cmpfp compare, in hash_Delete() 299 hash_Lookup(hash_tbl *hashtable, unsigned int hashcode, hash_cmpfp compare, in hash_Lookup() 321 hash_NextEntry(hash_tbl *hashtable) in hash_NextEntry() [all …]
|
H A D | bootpd.h | 210 extern hash_tbl *hwhashtable; 211 extern hash_tbl *iphashtable; 212 extern hash_tbl *nmhashtable;
|
H A D | readfile.c | 287 hash_tbl *hwhashtable; 288 hash_tbl *iphashtable; 289 hash_tbl *nmhashtable;
|
/netbsd-src/external/gpl3/binutils/dist/gas/ |
H A D | ecoff.c | 1411 htab_t hash_tbl, 1422 thash_t **hash_tbl); 1551 htab_t hash_tbl, /* ptr to hash table */ in add_string() argument 1561 hash_ptr = (shash_t *) str_hash_find (hash_tbl, str); in add_string() 1581 if (str_hash_insert (hash_tbl, str, hash_ptr, 0) != NULL) in add_string() 1849 thash_t **hash_tbl /* pointer to hash table to use */) in add_aux_sym_tir() argument 1904 for (hash_ptr = hash_tbl[hi]; in add_aux_sym_tir() 1918 hash_ptr->next = hash_tbl[hi]; in add_aux_sym_tir() 1921 hash_tbl[hi] = hash_ptr; in add_aux_sym_tir()
|
/netbsd-src/external/gpl3/binutils.old/dist/gas/ |
H A D | ecoff.c | 1411 htab_t hash_tbl, 1422 thash_t **hash_tbl); 1551 htab_t hash_tbl, /* ptr to hash table */ in add_string() argument 1561 hash_ptr = (shash_t *) str_hash_find (hash_tbl, str); in add_string() 1581 if (str_hash_insert (hash_tbl, str, hash_ptr, 0) != NULL) in add_string() 1849 thash_t **hash_tbl /* pointer to hash table to use */) in add_aux_sym_tir() argument 1905 for (hash_ptr = hash_tbl[hi]; in add_aux_sym_tir() 1919 hash_ptr->next = hash_tbl[hi]; in add_aux_sym_tir() 1922 hash_tbl[hi] = hash_ptr; in add_aux_sym_tir()
|