HomeSort by relevance Sort by last modified time
    Searched refs:nbItems (Results 1 - 3 of 3) 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/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 363 milliseconds