| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| hash.h | 29 typedef struct hash_table struct 37 hash_table; typedef in typeref:struct:hash_table 42 extern int hash_init (hash_table *htab, unsigned long int init_size); 46 extern int hash_destroy (hash_table *htab); 50 extern int hash_find_entry (hash_table *htab, 58 extern const void * hash_insert_entry (hash_table *htab, 64 extern int hash_set_value (hash_table *htab, 72 extern int hash_iterate (hash_table *htab, void **ptr, 81 extern int hash_iterate_modify (hash_table *htab, void **ptr,
|
| /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| hash.h | 29 typedef struct hash_table struct 37 hash_table; typedef in typeref:struct:hash_table 42 extern int hash_init (hash_table *htab, unsigned long int init_size); 46 extern int hash_destroy (hash_table *htab); 50 extern int hash_find_entry (hash_table *htab, 58 extern const void * hash_insert_entry (hash_table *htab, 64 extern int hash_set_value (hash_table *htab, 72 extern int hash_iterate (hash_table *htab, void **ptr, 81 extern int hash_iterate_modify (hash_table *htab, void **ptr,
|
| /src/external/gpl2/gettext/dist/gnulib-local/lib/ |
| hash.h | 29 typedef struct hash_table struct 37 hash_table; typedef in typeref:struct:hash_table 42 extern int hash_init (hash_table *htab, unsigned long int init_size); 46 extern int hash_destroy (hash_table *htab); 50 extern int hash_find_entry (hash_table *htab, 58 extern const void * hash_insert_entry (hash_table *htab, 64 extern int hash_set_value (hash_table *htab, 72 extern int hash_iterate (hash_table *htab, void **ptr, 81 extern int hash_iterate_modify (hash_table *htab, void **ptr,
|
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| abbrev-cache.c | 26 abbrev_cache::hash_table (const void *item) function in class:abbrev_cache 44 : m_tables (htab_create_alloc (20, hash_table, eq_table,
|
| /src/external/public-domain/xz/dist/src/liblzma/lz/ |
| lz_encoder_hash.h | 21 # define hash_table lzma_lz_hash_table macro 24 # define hash_table lzma_crc32_table[0] macro 50 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \ 56 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \ 61 ^ (hash_table[cur[3]] << 5)) & mf->hash_mask 67 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \ 72 ^ hash_table[cur[3]] << 5); \ 74 = (hash_4_value ^ (hash_table[cur[4]] << 3)) \ 82 ^ hash_table[cur[2]]) & 0xFFFF 88 ^ hash_table[cur[1]]) & 0xFFF [all...] |
| /src/external/bsd/top/dist/ |
| hash.h | 63 typedef struct hash_table { struct 66 } hash_table; typedef in typeref:struct:hash_table 76 hash_table *hash_create(int num); 77 void hash_sizeinfo(unsigned int *sizes, int max, hash_table *ht); 87 void *hash_add_uint(hash_table *ht, unsigned int key, void *value); 88 void *hash_replace_uint(hash_table *ht, unsigned int key, void *value); 89 void *hash_lookup_uint(hash_table *ht, unsigned int key); 90 void *hash_remove_uint(hash_table *ht, unsigned int key); 91 hash_item_uint *hash_first_uint(hash_table *ht, hash_pos *pos); 101 void *hash_add_pid(hash_table *ht, pid_t key, void *value) [all...] |
| /src/external/gpl2/mkhybrid/dist/ |
| hash.c | 31 static struct file_hash * hash_table[NR_HASH] = {0,}; variable in typeref:struct:file_hash 50 s_hash->next = hash_table[hash_number]; 55 hash_table[hash_number] = s_hash; 64 spnt = hash_table[hash_number]; 80 fh = hash_table[i]; 86 hash_table[i] = NULL;
|
| /src/external/mpl/dhcp/dist/includes/omapip/ |
| hash.h | 61 struct hash_table { struct 75 struct hash_table *hash; 96 add_hash ((struct hash_table *)table, buf, \ 103 delete_hash_entry ((struct hash_table *)table, buf, len, \ 111 (struct hash_table *)table, \ 117 return hash_report((struct hash_table *)table); \ 122 return hash_foreach ((struct hash_table *)table, \ 128 return new_hash ((struct hash_table **)tp, \ 135 free_hash_table ((struct hash_table **)table, file, line); \ 139 int new_hash_table (struct hash_table **, unsigned, const char *, int) [all...] |
| /src/external/bsd/flex/dist/src/ |
| sym.c | 52 typedef struct hash_entry **hash_table; typedef in typeref:struct:hash_entry 65 static int addsym(char[], char *, int, hash_table, int); 66 static struct hash_entry *findsym (const char *sym, hash_table table, 76 static int addsym (char sym[], char *str_def, int int_def, hash_table table, int table_size) 141 static struct hash_entry *findsym (const char *sym, hash_table table, int table_size)
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| attr_scan0.c | 284 HTABLE *hash_table; local 335 hash_table = va_arg(ap, HTABLE *); 457 if (htable_locate(hash_table, STR(name_buf)) != 0) { 463 } else if (hash_table->used >= ATTR_HASH_LIMIT) { 468 htable_enter(hash_table, STR(name_buf),
|
| attr_scan64.c | 287 HTABLE *hash_table; local 338 hash_table = va_arg(ap, HTABLE *); 526 if (htable_locate(hash_table, STR(name_buf)) != 0) { 532 } else if (hash_table->used >= ATTR_HASH_LIMIT) { 537 htable_enter(hash_table, STR(name_buf),
|
| attr_scan_plain.c | 300 HTABLE *hash_table; local 351 hash_table = va_arg(ap, HTABLE *); 504 if (htable_locate(hash_table, STR(name_buf)) != 0) { 510 } else if (hash_table->used >= ATTR_HASH_LIMIT) { 515 htable_enter(hash_table, STR(name_buf),
|
| /src/external/gpl3/gcc/dist/gcc/ |
| hash-table.h | 160 AN EXAMPLE HASH_TABLE DECLARATION 164 hash_table <some_type_hasher> some_type_hash_table; 169 You can then use any of the functions in hash_table's public interface. 170 See hash_table for details. The interface is very similar to libiberty's 174 to construct the hash_table lazily before first use. This is done 177 hash_table <some_type_hasher, true> some_type_hash_table; 197 hash_table <nofree_ptr_hash <whatever_type> > whatever_type_hash_table; 209 typedef hash_table <some_info_hasher> info_table_type; 301 /* Limit number of comparisons when calling hash_table<>::verify. */ 374 class hash_table class 646 hash_table<Descriptor, Lazy, Allocator>::hash_table (size_t size, bool ggc, function in class:hash_table 680 hash_table<Descriptor, Lazy, Allocator>::hash_table (const hash_table &h, function in class:hash_table [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| hash-table.h | 160 AN EXAMPLE HASH_TABLE DECLARATION 164 hash_table <some_type_hasher> some_type_hash_table; 169 You can then use any of the functions in hash_table's public interface. 170 See hash_table for details. The interface is very similar to libiberty's 174 to construct the hash_table lazily before first use. This is done 177 hash_table <some_type_hasher, true> some_type_hash_table; 197 hash_table <nofree_ptr_hash <whatever_type> > whatever_type_hash_table; 209 typedef hash_table <some_info_hasher> info_table_type; 301 /* Limit number of comparisons when calling hash_table<>::verify. */ 374 class hash_table class 604 hash_table<Descriptor, Lazy, Allocator>::hash_table (size_t size, bool ggc, function in class:hash_table 635 hash_table<Descriptor, Lazy, Allocator>::hash_table (const hash_table &h, function in class:hash_table [all...] |
| /src/external/gpl2/gmake/dist/ |
| hash.h | 43 struct hash_table struct 60 void hash_init __P((struct hash_table *ht, unsigned long size, 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...] |
| /src/external/gpl2/groff/dist/src/utils/indxbib/ |
| indxbib.cpp | 79 table_entry *hash_table; variable 81 // We make this the same size as hash_table so we only have to do one 673 hash_table = new table_entry[hash_table_size]; 675 hash_table[i].ptr = 0; 710 table_entry *pp = hash_table + h; 726 block *ptr = hash_table[i].ptr; 728 hash_table[i].count = -1; 730 hash_table[i].count = li; 750 fwrite_or_die(hash_table, sizeof(int), hash_table_size, indxfp); 754 fwrite_or_die(&hash_table[i].count, sizeof(int), 1, indxfp) [all...] |
| /src/external/gpl3/gdb/dist/sim/common/ |
| cgen-scache.h | 61 SCACHE_MAP *hash_table; member in struct:cpu_scache 62 #define CPU_SCACHE_HASH_TABLE(cpu) ((cpu) -> cgen_cpu.scache.hash_table)
|
| /src/external/gpl3/gdb/dist/sim/cr16/ |
| interp.c | 65 struct hash_entry hash_table[MAX_HASH+1]; variable in typeref:struct:hash_entry 87 h = &hash_table[hash(ins,1)]; 479 h = &hash_table[hash(s->opcode, 0)]; 484 h = &hash_table[hash((s->opcode << 1) >> 4, 0)]; 486 h = &hash_table[hash((s->opcode << 1), 0)]; 491 h = &hash_table[hash(s->opcode >> 4, 0)]; 493 h = &hash_table[hash(s->opcode, 0)]; 498 h = &hash_table[hash((s->opcode >>1) >> 4, 0)]; 500 h = &hash_table[hash((s->opcode >> 1), 0)]; 505 h = &hash_table[hash(s->opcode >> 8, 0)] [all...] |
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| cgen-scache.h | 61 SCACHE_MAP *hash_table; member in struct:cpu_scache 62 #define CPU_SCACHE_HASH_TABLE(cpu) ((cpu) -> cgen_cpu.scache.hash_table)
|
| /src/external/gpl3/gdb.old/dist/sim/cr16/ |
| interp.c | 65 struct hash_entry hash_table[MAX_HASH+1]; variable in typeref:struct:hash_entry 87 h = &hash_table[hash(ins,1)]; 479 h = &hash_table[hash(s->opcode, 0)]; 484 h = &hash_table[hash((s->opcode << 1) >> 4, 0)]; 486 h = &hash_table[hash((s->opcode << 1), 0)]; 491 h = &hash_table[hash(s->opcode >> 4, 0)]; 493 h = &hash_table[hash(s->opcode, 0)]; 498 h = &hash_table[hash((s->opcode >>1) >> 4, 0)]; 500 h = &hash_table[hash((s->opcode >> 1), 0)]; 505 h = &hash_table[hash(s->opcode >> 8, 0)] [all...] |
| /src/crypto/external/apache2/openssl/dist/apps/ |
| rehash.c | 102 static BUCKET *hash_table[257]; variable 128 unsigned int ndx = (type + hash) % OSSL_NELEM(hash_table); 130 for (bp = hash_table[ndx]; bp; bp = bp->next) 136 bp->next = hash_table[ndx]; 139 hash_table[ndx] = bp; 414 for (i = 0; i < OSSL_NELEM(hash_table); i++) { 415 for (bp = hash_table[i]; bp; bp = nextbp) { 477 hash_table[i] = NULL;
|
| /src/crypto/external/bsd/openssl/dist/apps/ |
| rehash.c | 100 static BUCKET *hash_table[257]; variable 128 unsigned int ndx = (type + hash) % OSSL_NELEM(hash_table); 130 for (bp = hash_table[ndx]; bp; bp = bp->next) 136 bp->next = hash_table[ndx]; 139 hash_table[ndx] = bp; 413 for (i = 0; i < OSSL_NELEM(hash_table); i++) { 414 for (bp = hash_table[i]; bp; bp = nextbp) { 476 hash_table[i] = NULL;
|
| /src/crypto/external/bsd/openssl.old/dist/apps/ |
| rehash.c | 104 static BUCKET *hash_table[257]; variable 132 unsigned int ndx = (type + hash) % OSSL_NELEM(hash_table); 134 for (bp = hash_table[ndx]; bp; bp = bp->next) 140 bp->next = hash_table[ndx]; 143 hash_table[ndx] = bp; 384 for (i = 0; i < OSSL_NELEM(hash_table); i++) { 385 for (bp = hash_table[i]; bp; bp = nextbp) { 447 hash_table[i] = NULL;
|
| /src/external/cddl/osnet/dist/tools/ctf/cvt/ |
| st_parse.c | 58 static tdesc_t *hash_table[BUCKETS]; variable 134 hash_table[i] = NULL; 470 tdesc_t *tdp = hash_table[bucket]; 1098 tdp->t_hash = hash_table[hash]; 1099 hash_table[hash] = tdp; 1142 if (hash_table[i]) { 1143 for (tdp = hash_table[i]->t_hash; 1144 tdp && tdp != hash_table[i];
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
| dbuf.h | 269 dmu_buf_impl_t **hash_table; member in struct:dbuf_hash_table
|