OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_VDBG_malloc
(Results
1 - 2
of
2
) sorted by null
/external/tremolo/Tremolo/
misc.h
47
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__)
misc.c
209
extern void *
_VDBG_malloc
(void *ptr,long bytes,char *file,long line){
Completed in 272 milliseconds