| /src/games/battlestar/ |
| parse.c | 51 static struct wlist *hashtab[HASHSIZE]; variable in typeref:struct:wlist 80 for (wp = hashtab[hash(s)]; wp != NULL; wp = wp->next) 93 wp->next = hashtab[hashval]; 94 hashtab[hashval] = wp;
|
| /src/usr.bin/rdist/ |
| lookup.c | 54 static struct syment *hashtab[HASHSIZE]; variable in typeref:struct:syment 140 for (s = hashtab[n]; s != NULL; s = s->s_next) { 162 s->s_next = hashtab[n]; 163 hashtab[n] = s;
|
| /src/crypto/external/bsd/heimdal/dist/lib/asn1/ |
| hash.h | 50 struct hashtab { /* Hash table */ struct 57 typedef struct hashtab Hashtab; 61 Hashtab *hashtabnew(int sz, 65 void *hashtabsearch(Hashtab *htab, /* The hash table */ 69 void *hashtabadd(Hashtab *htab, /* The hash table */ 72 int _hashtabdel(Hashtab *htab, /* The table */ 76 void hashtabforeach(Hashtab *htab,
|
| /src/games/adventure/ |
| hdr.h | 79 extern struct hashtab { /* hash table for vocabulary */ struct
|
| /src/libexec/ld.elf_so/ |
| headers.c | 183 const Elf_Symindx *hashtab = (const Elf_Symindx *) local 186 if (hashtab[0] > UINT32_MAX) 189 nbuckets = hashtab[0]; 191 obj->nchains = (nchains = hashtab[1]); 192 obj->buckets = hashtab + 2; 218 const Elf_Symindx *hashtab = (const Elf_Symindx *) local 221 if (hashtab[0] > UINT32_MAX) 224 nbuckets = hashtab[0]; 227 nmaskwords = hashtab[2]; 230 obj->buckets_gnu = (const uint32_t *)(hashtab + 4 + bloom_size32) [all...] |
| /src/lib/librumpuser/ |
| rumpuser_dl.c | 205 Elf_Symindx *hashtab; local 222 hashtab = (Elf_Symindx *)adjptr(map, edptr); 223 cursymcount = hashtab[1];
|
| /src/usr.bin/config/ |
| hash.c | 71 struct hashtab { struct 79 static struct hashtab strings; 88 static void ht_expand(struct hashtab *); 89 static void ht_init(struct hashtab *, size_t); 98 ht_init(struct hashtab *ht, size_t sz) 115 ht_expand(struct hashtab *ht) 209 struct hashtab *ht; 230 struct hashtab * 233 struct hashtab *ht; 241 ht_free(struct hashtab *ht [all...] |
| /src/usr.sbin/lpr/pac/ |
| pac.c | 91 static struct hent *hashtab[HSHSIZE]; /* Hash table proper */ variable in typeref:struct:hent 256 hp = hashtab[0]; 263 hp = hashtab[hno++]; 306 hp = hashtab[i]; 351 hp->h_link = hashtab[h]; 352 hashtab[h] = hp; 368 for (hp = hashtab[h]; hp != NULL; hp = hp->h_link)
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_write_add_filter_compress.c | 94 int hashtab [HSIZE]; member in struct:private_data 194 memset(state->hashtab, 0xff, sizeof(state->hashtab)); 356 if (state->hashtab[i] == state->cur_fcode) { 360 if (state->hashtab[i] < 0) /* Empty slot. */ 371 if (state->hashtab[i] == state->cur_fcode) { 375 if (state->hashtab[i] >= 0) 384 state->hashtab[i] = state->cur_fcode; 403 memset(state->hashtab, 0xff, sizeof(state->hashtab)); [all...] |
| /src/usr.bin/m4/ |
| main.c | 64 ndptr hashtab[HASHSIZE]; /* hash table for macros etc. */ variable
|
| /src/external/bsd/pcc/dist/pcc/f77/fcom/ |
| init.c | 117 struct hashentry hashtab[MAXHASH]; variable in typeref:struct:hashentry 118 struct hashentry *lasthash = hashtab+MAXHASH; 211 for(hp = hashtab ; hp < lasthash ; ++hp)
|