Home
last modified time | relevance | path

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

/external/libvorbis/lib/
Dmisc.h37 extern void *_VDBG_malloc(void *ptr,long bytes,char *file,long line);
46 #define _ogg_malloc(x) _VDBG_malloc(NULL,(x),__FILE__,__LINE__)
47 #define _ogg_calloc(x,y) _VDBG_malloc(NULL,(x)*(y),__FILE__,__LINE__)
48 #define _ogg_realloc(x,y) _VDBG_malloc((x),(y),__FILE__,__LINE__)
/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