Home | History | Annotate | Download | only in libxml2

Lines Matching refs:start_buf

6990         size_t start_buf = buf->content - buf->contentIO;
6992 buf->size += start_buf;
7030 size_t start_buf = buf->content - buf->contentIO;
7031 if (start_buf >= buf->size) {
7035 buf->size += start_buf;
7078 size_t start_buf = buf->content - buf->contentIO;
7080 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size);
7086 buf->content = newbuf + start_buf;
7181 size_t start_buf;
7215 start_buf = buf->content - buf->contentIO;
7217 if (start_buf > newSize) {
7222 buf->size += start_buf;
7224 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
7230 buf->content = rebuf + start_buf;
7351 size_t start_buf = buf->content - buf->contentIO;
7353 if (start_buf > (unsigned int) len) {