Home
last modified time | relevance | path

Searched refs:idxmap (Results 1 – 1 of 1) sorted by relevance

/busybox-1.35.0/networking/libiproute/
Dll_map.c16 struct idxmap { struct
17 struct idxmap *next; argument
26 static struct idxmap **idxmap; /* treat as *idxmap[16] */ argument
28 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 …]