Lines Matching defs:base
586 const xmlChar *cur, *base;
593 base = input->base;
594 while ((cur > base) && ((*cur == '\n') || (*cur == '\r'))) {
598 while ((n++ < 80) && (cur > base) && (*cur != '\n') && (*cur != '\r'))
601 base = cur;
615 while ((cur != base) && (n++ < 80)) {
618 base++;
1828 const char *base = NULL;
1836 base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
1837 if (base == (void *) MAP_FAILED)
1840 reader = xmlReaderForMemory(base, info.st_size, filename,
1979 munmap((char *) base, info.st_size);
2218 const char *base;
2223 base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
2224 if (base == (void *) MAP_FAILED)
2227 doc = htmlReadMemory((char *) base, info.st_size, filename,
2230 munmap((char *) base, info.st_size);
2333 const char *base;
2338 base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
2339 if (base == (void *) MAP_FAILED)
2343 doc = xmlReadMemory((char *) base, info.st_size,
2346 doc = xmlCtxtReadMemory(rectxt, (char *) base, info.st_size,
2349 munmap((char *) base, info.st_size);
3052 printf("\t--nofixup-base-uris : do not fixup xml:base uris\n");
3269 else if ((!strcmp(argv[i], "-nofixup-base-uris")) ||
3270 (!strcmp(argv[i], "--nofixup-base-uris"))) {