Lines Matching refs:ptr
34 #define mpp_realloc(ptr, type, count) (type *)mpp_osal_realloc(__FUNCTION__, ptr, sizeof(type) * (count))
36 #define mpp_free(ptr) mpp_osal_free(__FUNCTION__, ptr)
38 #define MPP_FREE(ptr) \
40 if (ptr) \
41 mpp_free(ptr); \
42 ptr = NULL; \
57 void *mpp_osal_realloc(const char *caller, void *ptr, size_t size);
58 void mpp_osal_free(const char *caller, void *ptr);