Symbol: HashEntry
tests/usr.bin/indent/fmt_decl.c
669
HashEntry_KeyEquals(const HashEntry *he, Substring key)
usr.bin/make/dir.c
390
HashEntry *he = HashTable_FindEntry(&odirs->table, name);
usr.bin/make/hash.c
113
static HashEntry *
usr.bin/make/hash.c
116
HashEntry *he;
usr.bin/make/hash.c
139
HashEntry **buckets = bmake_malloc(sizeof *buckets * n);
usr.bin/make/hash.c
156
HashEntry **buckets = t->buckets;
usr.bin/make/hash.c
160
HashEntry *he = buckets[i];
usr.bin/make/hash.c
162
HashEntry *next = he->next;
usr.bin/make/hash.c
175
HashEntry *
usr.bin/make/hash.c
187
HashEntry *he = HashTable_FindEntry(t, key);
usr.bin/make/hash.c
198
HashEntry *he = HashTable_Find(t, key, h);
usr.bin/make/hash.c
207
const HashEntry *he = t->buckets[b];
usr.bin/make/hash.c
224
HashEntry **oldBuckets = t->buckets;
usr.bin/make/hash.c
227
HashEntry **newBuckets = bmake_malloc(sizeof *newBuckets * newSize);
usr.bin/make/hash.c
234
HashEntry *he = oldBuckets[i];
usr.bin/make/hash.c
236
HashEntry *next = he->next;
usr.bin/make/hash.c
256
HashEntry *
usr.bin/make/hash.c
261
HashEntry *he = HashTable_Find(t, Substring_Init(key, keyEnd), h);
usr.bin/make/hash.c
289
HashEntry *he = HashTable_CreateEntry(t, key, NULL);
usr.bin/make/hash.c
295
HashTable_DeleteEntry(HashTable *t, HashEntry *he)
usr.bin/make/hash.c
297
HashEntry **ref = &t->buckets[he->hash & t->bucketsMask];
usr.bin/make/hash.c
314
HashEntry *he = hi->entry;
usr.bin/make/hash.c
315
HashEntry **buckets = t->buckets;
usr.bin/make/hash.h
101
HashEntry *entry; /* Next entry to check in current bucket. */
usr.bin/make/hash.h
110
HashEntry_Get(HashEntry *he)
usr.bin/make/hash.h
116
HashEntry_Set(HashEntry *he, void *datum)
usr.bin/make/hash.h
132
HashEntry *HashTable_FindEntry(HashTable *, const char *) MAKE_ATTR_USE;
usr.bin/make/hash.h
137
HashEntry *HashTable_CreateEntry(HashTable *, const char *, bool *);
usr.bin/make/hash.h
139
void HashTable_DeleteEntry(HashTable *, HashEntry *);
usr.bin/make/hash.h
82
struct HashEntry *next; /* Used to link together all the entries
usr.bin/make/hash.h
91
HashEntry **buckets;
usr.bin/make/main.c
1997
HashEntry *he = hi.entry;
usr.bin/make/parse.c
2325
HashEntry *he = HashTable_CreateEntry(&guards,
usr.bin/make/targ.c
274
HashEntry *he = HashTable_CreateEntry(&allTargetsByName, name, &isNew);
usr.bin/make/var.c
1221
HashEntry *he =
usr.bin/make/var.c
571
HashEntry *he = HashTable_CreateEntry(&scope->vars, name, NULL);
usr.bin/make/var.c
587
HashEntry *he = HashTable_FindEntry(&scope->vars, varname);