HomeSort by: relevance | last modified time | path
    Searched defs:hashtab (Results 1 - 8 of 8) sorted by relevancy

  /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/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 in function:_rtld_digest_dynamic
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 in function:_rtld_digest_dynamic
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 in function:getsymbols
222 hashtab = (Elf_Symindx *)adjptr(map, edptr);
223 cursymcount = hashtab[1];
  /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/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.bin/m4/
main.c 64 ndptr hashtab[HASHSIZE]; /* hash table for macros etc. */ variable in typeref:typename:ndptr[]

Completed in 16 milliseconds