Lines Matching defs:start_buf
7151 size_t start_buf = buf->content - buf->contentIO;
7153 buf->size += start_buf;
7191 size_t start_buf = buf->content - buf->contentIO;
7192 if (start_buf >= buf->size) {
7196 buf->size += start_buf;
7241 size_t start_buf = buf->content - buf->contentIO;
7243 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size);
7249 buf->content = newbuf + start_buf;
7344 size_t start_buf;
7393 start_buf = buf->content - buf->contentIO;
7395 if (start_buf > newSize) {
7400 buf->size += start_buf;
7402 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
7408 buf->content = rebuf + start_buf;
7529 size_t start_buf = buf->content - buf->contentIO;
7531 if (start_buf > (unsigned int) len) {