Searched refs:hash_table (Results 1 – 10 of 10) sorted by relevance
/ndk/sources/host-tools/make-3.81/ |
D | hash.h | 43 struct hash_table struct 60 void hash_init __P((struct hash_table *ht, unsigned long size, argument 62 void hash_load __P((struct hash_table *ht, void *item_table, 64 void **hash_find_slot __P((struct hash_table *ht, void const *key)); 65 void *hash_find_item __P((struct hash_table *ht, void const *key)); 66 void *hash_insert __P((struct hash_table *ht, const void *item)); 67 void *hash_insert_at __P((struct hash_table *ht, const void *item, void const *slot)); 68 void *hash_delete __P((struct hash_table *ht, void const *item)); 69 void *hash_delete_at __P((struct hash_table *ht, void const *slot)); 70 void hash_delete_items __P((struct hash_table *ht)); [all …]
|
D | hash.c | 27 static void hash_rehash __P((struct hash_table* ht)); 43 hash_init (struct hash_table *ht, unsigned long size, in hash_init() 69 hash_load (struct hash_table *ht, void *item_table, in hash_load() 86 hash_find_slot (struct hash_table *ht, const void *key) in hash_find_slot() 121 hash_find_item (struct hash_table *ht, const void *key) in hash_find_item() 128 hash_insert (struct hash_table *ht, const void *item) in hash_insert() 137 hash_insert_at (struct hash_table *ht, const void *item, const void *slot) in hash_insert_at() 158 hash_delete (struct hash_table *ht, const void *item) in hash_delete() 165 hash_delete_at (struct hash_table *ht, const void *slot) in hash_delete_at() 179 hash_free_items (struct hash_table *ht) in hash_free_items() [all …]
|
D | strcache.c | 115 static struct hash_table strings;
|
D | variable.h | 86 struct hash_table table; /* Hash table of variables. */
|
D | dir.c | 239 struct hash_table dirfiles; /* Files in this directory. */ 337 static struct hash_table directory_contents; 369 static struct hash_table directories;
|
D | variable.c | 354 v = (struct variable *) hash_find_item ((struct hash_table *) &set->table, &var_key); in lookup_variable() 432 return (struct variable *) hash_find_item ((struct hash_table *) &set->table, &var_key); in lookup_variable_in_set() 857 struct hash_table table; in target_environment()
|
D | function.c | 67 static struct hash_table function_table; 929 struct hash_table a_word_table; in func_filter_filterout()
|
D | file.c | 65 static struct hash_table files;
|
D | ChangeLog | 2092 (directories_contents): Change type to `struct hash_table'. 2095 (directory): Change type to `struct hash_table'. 2110 (files): Change type to `struct hash_table'. 2129 (function_table): Declare as `struct hash_table'. 2143 (variable_table): Declare as `struct hash_table'.
|
D | read.c | 1721 struct hash_table deps; in uniquize_deps()
|