Lines Matching defs:K1
22 #define K1 1024
23 #define K2 (K1 * 2)
24 #define K3 (K1 * 3)
25 #define K4 (K1 * 4)
49 if (memcmp(write_buf[count], read_buf[count], K1) != 0) {
61 SAFE_PREAD(1, fildes, read_buf[2], K1, K2);
65 SAFE_PREAD(1, fildes, read_buf[3], K1, K3);
68 SAFE_READ(1, fildes, read_buf[0], K1);
69 l_seek(fildes, 0, SEEK_CUR, K1);
71 SAFE_PREAD(1, fildes, read_buf[1], K1, K1);
72 l_seek(fildes, 0, SEEK_CUR, K1);
84 write_buf[count] = SAFE_MALLOC(K1);
85 read_buf[count] = SAFE_MALLOC(K1);
86 memset(write_buf[count], count, K1);
91 SAFE_PWRITE(1, fildes, write_buf[0], K1, 0);
92 SAFE_PWRITE(1, fildes, write_buf[2], K1, K2);
93 SAFE_PWRITE(1, fildes, write_buf[3], K1, K3);
94 SAFE_PWRITE(1, fildes, write_buf[1], K1, K1);