Lines Matching refs:PTR
61 #define MEMZALLOC(PTR, CAST, SIZE) \ argument
62 ((PTR) = (CAST)malloc((SIZE), M_NG_SSCOP, M_NOWAIT | M_ZERO))
63 #define MEMFREE(PTR) \ argument
64 free((PTR), M_NG_SSCOP)
66 #define MSG_ALLOC(PTR) \ argument
67 MEMZALLOC(PTR, struct sscop_msg *, sizeof(struct sscop_msg))
68 #define MSG_FREE(PTR) \ argument
69 MEMFREE(PTR)
71 #define SIG_ALLOC(PTR) \ argument
72 MEMZALLOC(PTR, struct sscop_sig *, sizeof(struct sscop_sig))
73 #define SIG_FREE(PTR) \ argument
74 MEMFREE(PTR)
86 #define MEMZALLOC(PTR, CAST, SIZE) \ argument
87 ((PTR) = (CAST)malloc((SIZE), M_NG_SSCOP_INS, M_NOWAIT | M_ZERO))
88 #define MEMFREE(PTR) \ argument
89 free((PTR), M_NG_SSCOP_INS)
91 #define MSG_ALLOC(PTR) \ argument
92 ((PTR) = malloc(sizeof(struct sscop_msg), \
94 #define MSG_FREE(PTR) \ argument
95 free((PTR), M_NG_SSCOP_MSG)
97 #define SIG_ALLOC(PTR) \ argument
98 ((PTR) = malloc(sizeof(struct sscop_sig), \
100 #define SIG_FREE(PTR) \ argument
101 free((PTR), M_NG_SSCOP_SIG)