Lines Matching +full:jd +full:- +full:src
1 /*-
58 reserve_in = 2 * op->incarnations; in setup()
59 reserve_bl = 20480 * op->incarnations; in setup()
64 if (op->verbose > 1) in setup()
65 printf("mmap(incarnations=%d). Free(%jdk, %jd), reserve(%jdk, %jd)\n", in setup()
66 op->incarnations, bl/1024, in, reserve_bl/1024, reserve_in); in setup()
80 if (chdir(path) == -1) in setup()
90 if (rmdir(path) == -1) { in cleanup()
103 char *src, *dst; in test() local
118 if (lseek(fdout, statbuf.st_size - 1, SEEK_SET) == -1) in test()
125 if ((src = mmap(0, statbuf.st_size, PROT_READ, MAP_SHARED, fdin, 0)) == in test()
126 (caddr_t) - 1) in test()
130 MAP_SHARED, fdout, 0)) == (caddr_t) - 1) in test()
133 memcpy(dst, src, statbuf.st_size); in test()
135 if (munmap(src, statbuf.st_size) == -1) in test()
139 if (munmap(dst, statbuf.st_size) == -1) in test()
143 if (unlink(file) == -1) in test()