Lines Matching full:_ptr
85 #define ALLOC(_ptr,_size) \
86 ( (_ptr) = _hb_alloc( _size, &error ), error != 0 )
88 #define REALLOC(_ptr,_newsz) \
89 ( (_ptr) = _hb_realloc( (_ptr), (_newsz), &error ), error != 0 )
91 #define FREE(_ptr) \
93 if ( (_ptr) ) \
95 _hb_free( _ptr ); \
96 _ptr = NULL; \
100 #define ALLOC_ARRAY(_ptr,_count,_type) \
101 ALLOC(_ptr,(_count)*sizeof(_type))
103 #define REALLOC_ARRAY(_ptr,_newcnt,_type) \
104 REALLOC(_ptr,(_newcnt)*sizeof(_type))