Symbol: hash_entry
usr.bin/ctags/C.c
130
hash_entry();
usr.bin/ctags/C.c
40
static void hash_entry(void);
usr.bin/ctfconv/generate.c
64
struct hash_entry se_key; /* Must be first */
usr.bin/ctfconv/hash.c
119
hash_insert(struct hash *h, unsigned int i, struct hash_entry *p,
usr.bin/ctfconv/hash.c
231
struct hash_entry *
usr.bin/ctfconv/hash.c
28
struct hash_entry *p;
usr.bin/ctfconv/hash.c
38
#define DELETED ((struct hash_entry *)h)
usr.bin/ctfconv/hash.h
30
struct hash_entry *hash_find(struct hash *, const char *, unsigned int *);
usr.bin/ctfconv/hash.h
32
void hash_insert(struct hash *, unsigned int, struct hash_entry *, const char *);
usr.bin/lex/sym.c
144
static struct hash_entry *findsym (const char *sym, hash_table table,
usr.bin/lex/sym.c
147
static struct hash_entry empty_entry = {
usr.bin/lex/sym.c
148
(struct hash_entry *) 0, (struct hash_entry *) 0,
usr.bin/lex/sym.c
151
struct hash_entry *sym_entry =
usr.bin/lex/sym.c
45
struct hash_entry *prev, *next;
usr.bin/lex/sym.c
51
typedef struct hash_entry **hash_table;
usr.bin/lex/sym.c
57
static struct hash_entry *ndtbl[NAME_TABLE_HASH_SIZE];
usr.bin/lex/sym.c
58
static struct hash_entry *sctbl[START_COND_HASH_SIZE];
usr.bin/lex/sym.c
59
static struct hash_entry *ccltab[CCL_HASH_SIZE];
usr.bin/lex/sym.c
65
static struct hash_entry *findsym PROTO ((const char *sym,
usr.bin/lex/sym.c
81
struct hash_entry *sym_entry = table[hash_val];
usr.bin/lex/sym.c
82
struct hash_entry *new_entry;
usr.bin/lex/sym.c
83
struct hash_entry *successor;
usr.bin/lex/sym.c
94
new_entry = (struct hash_entry *)
usr.bin/lex/sym.c
95
malloc (sizeof (struct hash_entry));