Searched refs:rebuf (Results 1 - 2 of 2) sorted by relevance

/external/libxml2/
H A Dbuf.c734 xmlChar* rebuf = NULL; local
794 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
795 if (rebuf == NULL) {
799 buf->contentIO = rebuf;
800 buf->content = rebuf + start_buf;
804 rebuf = (xmlChar *) xmlMallocAtomic(newSize);
806 rebuf = (xmlChar *) xmlRealloc(buf->content, newSize);
813 rebuf = (xmlChar *) xmlMallocAtomic(newSize);
814 if (rebuf != NULL) {
815 memcpy(rebuf, bu
[all...]
H A Dtree.c7362 xmlChar* rebuf = NULL; local
7421 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
7422 if (rebuf == NULL) {
7426 buf->contentIO = rebuf;
7427 buf->content = rebuf + start_buf;
7431 rebuf = (xmlChar *) xmlMallocAtomic(newSize);
7433 rebuf = (xmlChar *) xmlRealloc(buf->content, newSize);
7440 rebuf = (xmlChar *) xmlMallocAtomic(newSize);
7441 if (rebuf != NULL) {
7442 memcpy(rebuf, bu
[all...]

Completed in 648 milliseconds