Lines Matching defs:start_buf
364 size_t start_buf = buf->content - buf->contentIO;
366 buf->size += start_buf;
409 size_t start_buf = buf->content - buf->contentIO;
410 if (start_buf >= buf->size) {
414 buf->size += start_buf;
476 size_t start_buf = buf->content - buf->contentIO;
478 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size);
484 buf->content = newbuf + start_buf;
749 size_t start_buf;
808 start_buf = buf->content - buf->contentIO;
810 if (start_buf > newSize) {
815 buf->size += start_buf;
817 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
823 buf->content = rebuf + start_buf;
957 size_t start_buf = buf->content - buf->contentIO;
959 if (start_buf > (unsigned int) len) {