Home
last modified time | relevance | path

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

/f-stack/freebsd/netgraph/atm/sscfu/
H A Dng_sscfu_cust.h55 #define MEMZALLOC(PTR, CAST, SIZE) \ argument
57 #define MEMFREE(PTR) \ argument
58 free(PTR, M_NG_SSCFU)
60 #define SIG_ALLOC(PTR) \ argument
62 #define SIG_FREE(PTR) \ argument
63 MEMFREE(PTR)
74 #define MEMFREE(PTR) \ argument
75 free(PTR, M_NG_SSCFU_INS)
77 #define SIG_ALLOC(PTR) \ argument
80 #define SIG_FREE(PTR) \ argument
[all …]
/f-stack/freebsd/netgraph/atm/sscop/
H A Dng_sscop_cust.h65 #define MEMFREE(PTR) \ argument
66 free((PTR), M_NG_SSCOP)
68 #define MSG_ALLOC(PTR) \ argument
70 #define MSG_FREE(PTR) \ argument
71 MEMFREE(PTR)
73 #define SIG_ALLOC(PTR) \ argument
75 #define SIG_FREE(PTR) \ argument
76 MEMFREE(PTR)
90 #define MEMFREE(PTR) \ argument
91 free((PTR), M_NG_SSCOP_INS)
[all …]
/f-stack/freebsd/contrib/vchiq/interface/compat/
H A Dlist.h201 #define list_entry(PTR, TYPE, FIELD) container_of(PTR, TYPE, FIELD) argument
202 #define list_first_entry(PTR, TYPE, FIELD) \ argument
203 list_entry(list_first((PTR)), TYPE, FIELD)
204 #define list_last_entry(PTR, TYPE, FIELD) \ argument
205 list_entry(list_last((PTR)), TYPE, FIELD)