Home
last modified time | relevance | path

Searched refs:_VDBG_malloc (Results 1 – 2 of 2) sorted by relevance

/external/tremolo/Tremolo/
Dmisc.h47 extern void *_VDBG_malloc(void *ptr,long bytes,char *file,long line);
55 #define _ogg_malloc(x) _VDBG_malloc(NULL,(x),__FILE__,__LINE__)
56 #define _ogg_calloc(x,y) _VDBG_malloc(NULL,(x)*(y),__FILE__,__LINE__)
57 #define _ogg_realloc(x,y) _VDBG_malloc((x),(y),__FILE__,__LINE__)
Dmisc.c209 extern void *_VDBG_malloc(void *ptr,long bytes,char *file,long line){ in _VDBG_malloc() function