Home | History | Annotate | Download | only in libxml2

Lines Matching defs:start_buf

7190         size_t start_buf = buf->content - buf->contentIO;
7192 buf->size += start_buf;
7230 size_t start_buf = buf->content - buf->contentIO;
7231 if (start_buf >= buf->size) {
7235 buf->size += start_buf;
7280 size_t start_buf = buf->content - buf->contentIO;
7282 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size);
7288 buf->content = newbuf + start_buf;
7383 size_t start_buf;
7432 start_buf = buf->content - buf->contentIO;
7434 if (start_buf > newSize) {
7439 buf->size += start_buf;
7441 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
7447 buf->content = rebuf + start_buf;
7568 size_t start_buf = buf->content - buf->contentIO;
7570 if (start_buf > (unsigned int) len) {