Searched defs:hash_table (Results 1 - 6 of 6) sorted by relevance

/external/mesa3d/src/mesa/program/
H A Dhash_table.c25 * \file hash_table.c
33 #include "hash_table.h"
40 struct hash_table { struct
56 struct hash_table *
60 struct hash_table *ht;
85 hash_table_dtor(struct hash_table *ht)
93 hash_table_clear(struct hash_table *ht)
112 hash_table_find(struct hash_table *ht, const void *key)
131 hash_table_insert(struct hash_table *ht, void *data, const void *key)
146 hash_table_remove(struct hash_table *h
[all...]
/external/e2fsprogs/e2fsck/
H A Drevoke.c96 struct list_head *hash_table; member in struct:jbd_revoke_table_s
135 hash_list = &journal->j_revoke->hash_table[hash(journal, blocknr)];
160 hash_list = &journal->j_revoke->hash_table[hash(journal, blocknr)];
221 journal->j_revoke->hash_table =
223 if (!journal->j_revoke->hash_table) {
230 INIT_LIST_HEAD(&journal->j_revoke->hash_table[tmp]);
248 hash_list = &table->hash_table[i];
252 kfree(table->hash_table);
452 hash_list = &revoke->hash_table[i];
632 hash_list = &revoke->hash_table[
[all...]
/external/bison/lib/
H A Dhash.c52 struct hash_table struct
/external/webkit/Tools/android/flex-2.5.4a/
H A Dflexdef.h331 typedef struct hash_entry **hash_table; typedef in typeref:struct:hash_entry
999 extern int addsym PROTO((register char[], char*, int, hash_table, int));
1008 extern struct hash_entry *findsym PROTO((register char[], hash_table, int ));
/external/dnsmasq/src/
H A Dcache.c19 static struct crec *cache_head = NULL, *cache_tail = NULL, **hash_table = NULL; variable in typeref:struct:
99 /* In most cases, we create the hash table once here by calling this with (hash_table == NULL)
112 if (!hash_table)
120 old = hash_table;
122 hash_table = new;
151 return hash_table + ((val ^ (val >> 16)) & (hash_size - 1));
308 for (crecp = hash_table[i], up = &hash_table[i];
601 for (crecp = hash_table[i], up = &hash_table[
[all...]
/external/v8/src/
H A Dobjects.cc5406 PolymorphicCodeCacheHashTable* hash_table = local
5409 { MaybeObject* maybe_new_cache = hash_table->Put(maps, flags, code);
5420 PolymorphicCodeCacheHashTable* hash_table = local
5422 return Handle<Object>(hash_table->Lookup(maps, flags));

Completed in 376 milliseconds