Lines Matching refs:ptrmap
26 #include "ptrmap.h"
36 struct ptrmap {
37 struct ptrmap *next;
42 DECLARE_ALLOCATOR(ptrmap);
43 ALLOCATOR(ptrmap, "ptrmap");
45 void __ptrmap_add(struct ptrmap **mapp, void *key, void *val)
47 struct ptrmap *head = *mapp;
48 struct ptrmap *newmap;
49 struct ptrmap *map;
54 struct ptrmap *next = map->next;
79 void *__ptrmap_lookup(struct ptrmap *map, void *key)
92 void __ptrmap_update(struct ptrmap **mapp, void *key, void *val)
94 struct ptrmap *map = *mapp;