OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pcalloc
(Results
1 - 3
of
3
) sorted by null
/external/srec/portable/include/
pmemory.h
113
#define CALLOC(nbElem, elemSize, tag) (
pcalloc
(nbElem, elemSize , tag, L(__FILE__), __LINE__))
114
#define CALLOC_CLR(nbElem, elemSize, tag) (
pcalloc
(nbElem, elemSize , tag, L(__FILE__), __LINE__))
119
#define CALLOC(nbElem, elemSize, tag) (
pcalloc
(nbElem, elemSize))
120
#define CALLOC_CLR(nbElem, elemSize, tag) (
pcalloc
(nbElem, elemSize))
198
PORTABLE_API void *
pcalloc
(size_t nbItems, size_t itemSize, const LCHAR* tag, const LCHAR* file, int line);
200
PORTABLE_API void *
pcalloc
(size_t nbItems, size_t itemSize);
206
* @param ptr A pointer previously allocated by pmalloc,
pcalloc
or prealloc.
224
* Frees data allocated through pmalloc,
pcalloc
or realloc.
226
* @param ptr A pointer previously allocated by pmalloc,
pcalloc
or prealloc.
/external/srec/portable/src/
pmemory.c
701
void *
pcalloc
(size_t nbItems, size_t itemSize, const LCHAR* tag, const LCHAR* file, int line)
function
703
void *
pcalloc
(size_t nbItems, size_t itemSize)
/external/valgrind/main/include/
pub_tool_tooliface.h
452
void* (*
pcalloc
) ( ThreadId tid, SizeT nmemb, SizeT size1 ),
[
all
...]
Completed in 430 milliseconds