Searched refs:idxmap (Results 1 – 1 of 1) sorted by relevance
16 struct idxmap { struct17 struct idxmap *next; argument26 static struct idxmap **idxmap; /* treat as *idxmap[16] */ argument28 static struct idxmap *find_by_index(int idx) in find_by_index()30 struct idxmap *im; in find_by_index()32 if (idxmap) in find_by_index()33 for (im = idxmap[idx & 0xF]; im; im = im->next) in find_by_index()45 struct idxmap *im, **imp; in ll_remember_index()59 if (!idxmap) in ll_remember_index()60 idxmap = xzalloc(sizeof(idxmap[0]) * 16); in ll_remember_index()[all …]