Lines Matching defs:count
45 int count;
48 for (count = 0; count < NBUFS; count++) {
49 if (memcmp(write_buf[count], read_buf[count], K1) != 0) {
50 tst_res(TFAIL, "read/write buffer[%d] data mismatch", count);
81 int count;
83 for (count = 0; count < NBUFS; count++) {
84 write_buf[count] = SAFE_MALLOC(K1);
85 read_buf[count] = SAFE_MALLOC(K1);
86 memset(write_buf[count], count, K1);
100 int count;
102 for (count = 0; count < NBUFS; count++) {
103 free(write_buf[count]);
104 free(read_buf[count]);