Lines Matching full:base
577 const xmlChar *cur, *base;
584 base = input->base;
585 while ((cur > base) && ((*cur == '\n') || (*cur == '\r'))) {
589 while ((n++ < 80) && (cur > base) && (*cur != '\n') && (*cur != '\r'))
592 base = cur;
606 while ((cur != base) && (n++ < 80)) {
609 base++;
1810 const char *base = NULL;
1818 base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
1819 if (base == (void *) MAP_FAILED)
1822 reader = xmlReaderForMemory(base, info.st_size, filename,
1961 munmap((char *) base, info.st_size);
2106 const char *base;
2111 base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
2112 if (base == (void *) MAP_FAILED)
2115 doc = htmlReadMemory((char *) base, info.st_size, filename,
2118 munmap((char *) base, info.st_size);
2219 const char *base;
2224 base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
2225 if (base == (void *) MAP_FAILED)
2229 doc = xmlReadMemory((char *) base, info.st_size,
2232 doc = xmlCtxtReadMemory(rectxt, (char *) base, info.st_size,
2235 munmap((char *) base, info.st_size);
2897 printf("\t--nofixup-base-uris : do not fixup xml:base uris\n");
3103 else if ((!strcmp(argv[i], "-nofixup-base-uris")) ||
3104 (!strcmp(argv[i], "--nofixup-base-uris"))) {