Lines Matching defs:start_buf
362 size_t start_buf = buf->content - buf->contentIO;
364 buf->size += start_buf;
407 size_t start_buf = buf->content - buf->contentIO;
408 if (start_buf >= buf->size) {
412 buf->size += start_buf;
462 size_t start_buf = buf->content - buf->contentIO;
464 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size);
470 buf->content = newbuf + start_buf;
735 size_t start_buf;
785 start_buf = buf->content - buf->contentIO;
787 if (start_buf > newSize) {
792 buf->size += start_buf;
794 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
800 buf->content = rebuf + start_buf;
925 size_t start_buf = buf->content - buf->contentIO;
927 if (start_buf > (unsigned int) len) {