Home | History | Annotate | Download | only in lib

Lines Matching defs:bufSize

2059     int bufSize;
2072 bufSize = nameLen + ROUND_UP(tag->rawNameLength, sizeof(XML_Char));
2073 if (bufSize > tag->bufEnd - tag->buf) {
2074 char *temp = (char *)REALLOC(tag->buf, bufSize);
2089 tag->bufEnd = temp + bufSize;
2416 int bufSize;
2426 bufSize = (int)(tag->bufEnd - tag->buf) << 1;
2428 char *temp = (char *)REALLOC(tag->buf, bufSize);
2432 tag->bufEnd = temp + bufSize;