stb               118 global/literal.c 	struct stat stb;
stb               127 global/literal.c 	if (fstat(f, &stb) < 0) {
stb               131 global/literal.c 	if (stb.st_size == 0)
stb               134 global/literal.c 	buf = mmap(0, stb.st_size, PROT_READ, MAP_SHARED, f, 0);
stb               139 global/literal.c 	HANDLE hMap = CreateFileMapping((HANDLE)_get_osfhandle(f), NULL, PAGE_READONLY, 0, stb.st_size, NULL);
stb               147 global/literal.c 	buf = (char *)alloca(stb.st_size);
stb               149 global/literal.c 	buf = (char *)malloc(stb.st_size);
stb               153 global/literal.c 	if (read(f, buf, stb.st_size) < stb.st_size)
stb               157 global/literal.c 	ccount = stb.st_size;
stb               222 global/literal.c 	munmap(buf, stb.st_size);