readbuf            50 user/testbin/filetest/filetest.c 	static char readbuf[41];
readbuf            79 user/testbin/filetest/filetest.c 	rv = read(fd, readbuf, 40);
readbuf            88 user/testbin/filetest/filetest.c 	readbuf[40] = 0;
readbuf            90 user/testbin/filetest/filetest.c 	if (strcmp(readbuf, writebuf)) {
readbuf            56 user/testbin/hash/hash.c 	char readbuf[1];
readbuf            74 user/testbin/hash/hash.c 		if (read(fd, readbuf, 1) <= 0) break;
readbuf            75 user/testbin/hash/hash.c 		j = ((j*8) + (int) readbuf[0]) % HASHP;