• Home
  • Raw
  • Download

Lines Matching refs:elt

86 #define UTLIST_SV(elt,list) _tmp = (char*)(list); {char **_alias = (char**)&(list); *_alias = (elt)…  argument
87 #define UTLIST_NEXT(elt,list,next) ((char*)((list)->next)) argument
88 #define UTLIST_NEXTASGN(elt,list,to,next) { char **_alias = (char**)&((list)->next); *_alias=(char*… argument
90 #define UTLIST_PREVASGN(elt,list,to,prev) { char **_alias = (char**)&((list)->prev); *_alias=(char*… argument
95 #define UTLIST_SV(elt,list) argument
96 #define UTLIST_NEXT(elt,list,next) ((elt)->next) argument
97 #define UTLIST_NEXTASGN(elt,list,to,next) ((elt)->next)=(to) argument
99 #define UTLIST_PREVASGN(elt,list,to,prev) ((elt)->prev)=(to) argument
369 #define LL_LOWER_BOUND(head,elt,like,cmp) \ argument
370 LL_LOWER_BOUND2(head,elt,like,cmp,next)
372 #define LL_LOWER_BOUND2(head,elt,like,cmp,next) \ argument
375 (elt) = NULL; \
377 for ((elt) = (head); (elt)->next != NULL; (elt) = (elt)->next) { \
378 if (cmp((elt)->next, like) >= 0) { \
435 #define LL_SEARCH(head,out,elt,cmp) \ argument
436 LL_SEARCH2(head,out,elt,cmp,next)
438 #define LL_SEARCH2(head,out,elt,cmp,next) \ argument
441 if ((cmp(out,elt))==0) break; \
669 #define DL_LOWER_BOUND(head,elt,like,cmp) \ argument
670 DL_LOWER_BOUND2(head,elt,like,cmp,next)
672 #define DL_LOWER_BOUND2(head,elt,like,cmp,next) \ argument
675 (elt) = NULL; \
677 for ((elt) = (head); (elt)->next != NULL; (elt) = (elt)->next) { \
678 if ((cmp((elt)->next, like)) >= 0) { \
910 #define CDL_LOWER_BOUND(head,elt,like,cmp) \ argument
911 CDL_LOWER_BOUND2(head,elt,like,cmp,next)
913 #define CDL_LOWER_BOUND2(head,elt,like,cmp,next) \ argument
916 (elt) = NULL; \
918 for ((elt) = (head); (elt)->next != (head); (elt) = (elt)->next) { \
919 if ((cmp((elt)->next, like)) >= 0) { \
973 #define CDL_SEARCH(head,out,elt,cmp) \ argument
974 CDL_SEARCH2(head,out,elt,cmp,next)
976 #define CDL_SEARCH2(head,out,elt,cmp,next) \ argument
979 if ((cmp(out,elt))==0) break; \