Lines Matching refs:ptr
75 #define BEGIN_CB(ptr, size) do { \
76 assert(sizeof(*(ptr)) == sizeof(uint32_t)); \
78 cs_ptr = (ptr); \
81 #define NEW_CB(ptr, size) \
83 assert(sizeof(*(ptr)) == sizeof(uint32_t)); \
85 cs_ptr = (ptr) = malloc((size) * sizeof(uint32_t)); \
101 #define NEW_CB(ptr, size) \
102 cs_ptr = (ptr) = malloc((size) * sizeof(uint32_t))
104 #define BEGIN_CB(ptr, size) cs_ptr = (ptr)