Symbol: ohash
usr.bin/m4/extern.h
72
extern struct ohash macros;
usr.bin/m4/lib/ohash.h
54
void ohash_init(struct ohash *, unsigned, struct ohash_info *);
usr.bin/m4/lib/ohash.h
55
void ohash_delete(struct ohash *);
usr.bin/m4/lib/ohash.h
57
unsigned int ohash_lookup_interval(struct ohash *, const char *,
usr.bin/m4/lib/ohash.h
59
unsigned int ohash_lookup_memory(struct ohash *, const char *,
usr.bin/m4/lib/ohash.h
61
void *ohash_find(struct ohash *, unsigned int);
usr.bin/m4/lib/ohash.h
62
void *ohash_remove(struct ohash *, unsigned int);
usr.bin/m4/lib/ohash.h
63
void *ohash_insert(struct ohash *, unsigned int, void *);
usr.bin/m4/lib/ohash.h
64
void *ohash_first(struct ohash *, unsigned int *);
usr.bin/m4/lib/ohash.h
65
void *ohash_next(struct ohash *, unsigned int *);
usr.bin/m4/lib/ohash.h
66
unsigned int ohash_entries(struct ohash *);
usr.bin/m4/lib/ohash.h
71
unsigned int ohash_qlookupi(struct ohash *, const char *, const char **);
usr.bin/m4/lib/ohash.h
72
unsigned int ohash_qlookup(struct ohash *, const char *);
usr.bin/m4/lib/ohash_delete.c
26
ohash_delete(struct ohash *h)
usr.bin/m4/lib/ohash_do.c
24
static void ohash_resize(struct ohash *);
usr.bin/m4/lib/ohash_do.c
27
ohash_resize(struct ohash *h)
usr.bin/m4/lib/ohash_do.c
71
ohash_remove(struct ohash *h, unsigned int i)
usr.bin/m4/lib/ohash_do.c
89
ohash_find(struct ohash *h, unsigned int i)
usr.bin/m4/lib/ohash_do.c
98
ohash_insert(struct ohash *h, unsigned int i, void *p)
usr.bin/m4/lib/ohash_entries.c
25
ohash_entries(struct ohash *h)
usr.bin/m4/lib/ohash_enum.c
25
ohash_first(struct ohash *h, unsigned int *pos)
usr.bin/m4/lib/ohash_enum.c
32
ohash_next(struct ohash *h, unsigned int *pos)
usr.bin/m4/lib/ohash_init.c
25
ohash_init(struct ohash *h, unsigned int size, struct ohash_info *info)
usr.bin/m4/lib/ohash_lookup_interval.c
25
ohash_lookup_interval(struct ohash *h, const char *start, const char *end,
usr.bin/m4/lib/ohash_lookup_memory.c
25
ohash_lookup_memory(struct ohash *h, const char *k, size_t size, uint32_t hv)
usr.bin/m4/lib/ohash_qlookup.c
25
ohash_qlookup(struct ohash *h, const char *s)
usr.bin/m4/lib/ohash_qlookupi.c
25
ohash_qlookupi(struct ohash *h, const char *s, const char **e)
usr.bin/m4/look.c
64
struct ohash macros;