Searched refs:nbItems (Results 1 – 3 of 3) sorted by relevance
/external/libxml2/ |
D | 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 */ member 3315 list->nbItems = 0; in xmlSchemaItemListClear() 3330 } else if (list->sizeItems <= list->nbItems) { in xmlSchemaItemListAdd() 3340 list->items[list->nbItems++] = item; in xmlSchemaItemListAdd() 3359 } else if (list->sizeItems <= list->nbItems) { in xmlSchemaItemListAddSize() 3369 list->items[list->nbItems++] = item; in xmlSchemaItemListAddSize() 3384 } else if (list->sizeItems <= list->nbItems) { in xmlSchemaItemListInsert() 3397 if (idx >= list->nbItems) { in xmlSchemaItemListInsert() [all …]
|
/external/srec/portable/include/ |
D | pmemory.h | 198 PORTABLE_API void *pcalloc(size_t nbItems, size_t itemSize, const LCHAR* tag, const LCHAR* file, in… 200 PORTABLE_API void *pcalloc(size_t nbItems, size_t itemSize);
|
/external/srec/portable/src/ |
D | pmemory.c | 701 void *pcalloc(size_t nbItems, size_t itemSize, const LCHAR* tag, const LCHAR* file, int line) in pcalloc() argument 703 void *pcalloc(size_t nbItems, size_t itemSize) in pcalloc() 711 result = (MemoryData *)pmalloc(nbItems * itemSize, tag, file, line); in pcalloc() 713 result = (MemoryData *)pmalloc(nbItems * itemSize); in pcalloc() 716 memset(result, 0, nbItems * itemSize); in pcalloc()
|