OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nbItems
(Results
1 - 4
of
4
) sorted by null
/external/srec/portable/include/
pmemory.h
184
* @param
nbItems
The number items to allocate.
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);
/external/chromium_org/third_party/libxml/src/
xmlschemas.c
293
(WXS_CONSTRUCTOR((ctx))->buckets->
nbItems
> 0) )
312
#define WXS_ILIST_IS_EMPTY(l) ((l == NULL) || ((l)->
nbItems
== 0))
355
int
nbItems
; /* used for dynamic addition of schemata */
[
all
...]
/external/libxml2/
xmlschemas.c
293
(WXS_CONSTRUCTOR((ctx))->buckets->
nbItems
> 0) )
312
#define WXS_ILIST_IS_EMPTY(l) ((l == NULL) || ((l)->
nbItems
== 0))
355
int
nbItems
; /* used for dynamic addition of schemata */
[
all
...]
/external/srec/portable/src/
pmemory.c
701
void *pcalloc(size_t
nbItems
, size_t itemSize, const LCHAR* tag, const LCHAR* file, int line)
703
void *pcalloc(size_t
nbItems
, size_t itemSize)
711
result = (MemoryData *)pmalloc(
nbItems
* itemSize, tag, file, line);
713
result = (MemoryData *)pmalloc(
nbItems
* itemSize);
716
memset(result, 0,
nbItems
* itemSize);
Completed in 4344 milliseconds