elt                87 src/dps8/utarray.h typedef void (dtor_f)(void *elt);
elt                88 src/dps8/utarray.h typedef void (init_f)(void *elt);
elt               284 src/dps8/utarray.h static void utarray_str_dtor(void *elt) {
elt               285 src/dps8/utarray.h   char **eltc = (char**)elt;
elt                98 src/dps8/utlist.h #  define _SV(elt,list) _tmp = (char*)(list); {char **_alias = (char**)&(list); *_alias = (elt); }
elt                99 src/dps8/utlist.h #  define _NEXT(elt,list,next) ((char*)((list)->next))
elt               100 src/dps8/utlist.h #  define _NEXTASGN(elt,list,to,next) { char **_alias = (char**)&((list)->next); *_alias=(char*)(to); }
elt               102 src/dps8/utlist.h #  define _PREVASGN(elt,list,to,prev) { char **_alias = (char**)&((list)->prev); *_alias=(char*)(to); }
elt               106 src/dps8/utlist.h #  define _SV(elt,list)
elt               107 src/dps8/utlist.h #  define _NEXT(elt,list,next) ((elt)->next)
elt               108 src/dps8/utlist.h #  define _NEXTASGN(elt,list,to,next) ((elt)->next)=(to)
elt               110 src/dps8/utlist.h #  define _PREVASGN(elt,list,to,prev) ((elt)->prev)=(to)
elt               468 src/dps8/utlist.h # define LL_SEARCH(head,out,elt,cmp)                                                           \
elt               469 src/dps8/utlist.h     LL_SEARCH2(head,out,elt,cmp,next)
elt               471 src/dps8/utlist.h # define LL_SEARCH2(head,out,elt,cmp,next)                                                     \
elt               474 src/dps8/utlist.h       if ((cmp(out,elt))==0) break;                                                            \
elt               724 src/dps8/utlist.h # define CDL_SEARCH(head,out,elt,cmp)                                                          \
elt               725 src/dps8/utlist.h     CDL_SEARCH2(head,out,elt,cmp,next)
elt               727 src/dps8/utlist.h # define CDL_SEARCH2(head,out,elt,cmp,next)                                                    \
elt               730 src/dps8/utlist.h       if ((cmp(out,elt))==0) break;                                                            \