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