Lines Matching defs:start_buf
7015 size_t start_buf = buf->content - buf->contentIO;
7017 buf->size += start_buf;
7055 size_t start_buf = buf->content - buf->contentIO;
7056 if (start_buf >= buf->size) {
7060 buf->size += start_buf;
7105 size_t start_buf = buf->content - buf->contentIO;
7107 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size);
7113 buf->content = newbuf + start_buf;
7208 size_t start_buf;
7242 start_buf = buf->content - buf->contentIO;
7244 if (start_buf > newSize) {
7249 buf->size += start_buf;
7251 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
7257 buf->content = rebuf + start_buf;
7378 size_t start_buf = buf->content - buf->contentIO;
7380 if (start_buf > (unsigned int) len) {