Home
last modified time | relevance | path

Searched refs:hash_entry (Results 1 – 5 of 5) sorted by relevance

/glibc-2.36/locale/programs/
Dsimple-hash.c49 typedef struct hash_entry struct
55 struct hash_entry *next; argument
57 hash_entry; typedef
77 htab->table = (void *) xcalloc (init_size + 1, sizeof (hash_entry)); in init_hash()
100 hash_entry *table = (hash_entry *) htab->table; in insert_entry()
119 hash_entry *table = (hash_entry *) htab->table; in insert_entry_2()
127 if ((hash_entry *) htab->first == NULL) in insert_entry_2()
134 table[idx].next = ((hash_entry *) htab->first)->next; in insert_entry_2()
135 ((hash_entry *) htab->first)->next = &table[idx]; in insert_entry_2()
150 htab->table = (void *) xcalloc (1 + htab->size, sizeof (hash_entry)); in insert_entry_2()
[all …]
/glibc-2.36/iconv/
Dgconv_cache.c118 + header->hash_size * sizeof (struct hash_entry)) in __gconv_load_cache()
150 const struct hash_entry *hashtab; in find_module_idx()
155 hashtab = (struct hash_entry *) ((char *) gconv_cache in find_module_idx()
Diconvconfig.h34 struct hash_entry struct
Diconvconfig.c973 static struct hash_entry *hash_table;
1042 hash_table = (struct hash_entry *) xcalloc (hash_size, in write_output()
1043 sizeof (struct hash_entry)); in write_output()
1165 iov[idx].iov_len = hash_size * sizeof (struct hash_entry); in write_output()
Diconv_prog.c718 const struct hash_entry *hashtab; in insert_cache()
723 hashtab = (struct hash_entry *) ((char *) header + header->hash_offset); in insert_cache()