Searched defs:elt (Results 1 – 4 of 4) sorted by relevance
/net-tools-3.4.0/tinydtls-0.8.2/ |
D | utlist.h | 79 #define _SV(elt,list) _tmp = (char*)(list); {char **_alias = (char**)&(list); *_alias = (elt); } argument 80 #define _NEXT(elt,list) ((char*)((list)->next)) argument 81 #define _NEXTASGN(elt,list,to) { char **_alias = (char**)&((list)->next); *_alias=(char*)(to); } argument 82 #define _PREV(elt,list) ((char*)((list)->prev)) argument 83 #define _PREVASGN(elt,list,to) { char **_alias = (char**)&((list)->prev); *_alias=(char*)(to); } argument 87 #define _SV(elt,list) argument 88 #define _NEXT(elt,list) ((elt)->next) argument 89 #define _NEXTASGN(elt,list,to) ((elt)->next)=(to) argument 90 #define _PREV(elt,list) ((elt)->prev) argument 91 #define _PREVASGN(elt,list,to) ((elt)->prev)=(to) argument [all …]
|
/net-tools-3.4.0/libcoap/include/coap/ |
D | utlist.h | 84 #define _SV(elt,list) _tmp = (char*)(list); {char **_alias = (char**)&(list); *_alias = (elt); } argument 85 #define _NEXT(elt,list,next) ((char*)((list)->next)) argument 86 #define _NEXTASGN(elt,list,to,next) { char **_alias = (char**)&((list)->next); *_alias=(char*)(to);… argument 88 #define _PREVASGN(elt,list,to,prev) { char **_alias = (char**)&((list)->prev); *_alias=(char*)(to);… argument 92 #define _SV(elt,list) argument 93 #define _NEXT(elt,list,next) ((elt)->next) argument 94 #define _NEXTASGN(elt,list,to,next) ((elt)->next)=(to) argument 96 #define _PREVASGN(elt,list,to,prev) ((elt)->prev)=(to) argument 450 #define LL_SEARCH(head,out,elt,cmp) \ argument 453 #define LL_SEARCH2(head,out,elt,cmp,next) \ argument [all …]
|
/net-tools-3.4.0/libcoap/examples/ |
D | coap_list.c | 44 coap_list_t *elt, *tmp; in coap_delete_list() local
|
/net-tools-3.4.0/ |
D | coap-client.c | 658 coap_list_t *elt, *tmp; in coap_delete_list() local 748 coap_list_t *elt, *tmp; in create_pdu() local
|