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

  /src/usr.bin/make/
hash.h 81 typedef struct HashEntry {
82 struct HashEntry *next; /* Used to link together all the entries
87 } HashEntry;
91 HashEntry **buckets;
101 HashEntry *entry; /* Next entry to check in current bucket. */
110 HashEntry_Get(HashEntry *he)
116 HashEntry_Set(HashEntry *he, void *datum)
132 HashEntry *HashTable_FindEntry(HashTable *, const char *) MAKE_ATTR_USE;
137 HashEntry *HashTable_CreateEntry(HashTable *, const char *, bool *);
139 void HashTable_DeleteEntry(HashTable *, HashEntry *);
    [all...]
hash.c 113 static HashEntry *
116 HashEntry *he;
139 HashEntry **buckets = bmake_malloc(sizeof *buckets * n);
156 HashEntry **buckets = t->buckets;
160 HashEntry *he = buckets[i];
162 HashEntry *next = he->next;
175 HashEntry *
187 HashEntry *he = HashTable_FindEntry(t, key);
198 HashEntry *he = HashTable_Find(t, key, h);
207 const HashEntry *he = t->buckets[b]
    [all...]
targ.c 274 HashEntry *he = HashTable_CreateEntry(&allTargetsByName, name, &isNew);
dir.c 387 HashEntry *he = HashTable_FindEntry(&odirs->table, name);
main.c 1992 HashEntry *he = hi.entry;
var.c 156 * For scope variables, it aliases the corresponding HashEntry name.
564 HashEntry *he = HashTable_CreateEntry(&scope->vars, name, NULL);
580 HashEntry *he = HashTable_FindEntry(&scope->vars, varname);
1214 HashEntry *he =
parse.c 2367 HashEntry *he = HashTable_CreateEntry(&guards,
  /src/tests/usr.bin/indent/
fmt_decl.c 661 * type names in declarations and generated 'HashEntry * he' with an extra
669 HashEntry_KeyEquals(const HashEntry *he, Substring key)

Completed in 22 milliseconds