Searched defs:sizeItems (Results 1 - 1 of 1) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/
H A Dxmlschemas.c356 int sizeItems; /* used for dynamic addition of schemata */ member in struct:_xmlSchemaItemList
3316 list->sizeItems = 0;
3329 list->sizeItems = 20;
3330 } else if (list->sizeItems <= list->nbItems) {
3331 list->sizeItems *= 2;
3333 list->sizeItems * sizeof(void *));
3336 list->sizeItems = 0;
3358 list->sizeItems = initialSize;
3359 } else if (list->sizeItems <= list->nbItems) {
3360 list->sizeItems *
[all...]

Completed in 645 milliseconds