Lines Matching refs:blksize
134 uint32_t blksize,
138 printf("%11u ", (unsigned int) blksize); fflush(stdout);
146 const void *data = &base[random % (poolsize - blksize)];
147 SINK = CKSUM_FP(data, blksize);
155 uint64_t accbytes = (uint64_t) numops * blksize;
159 if (blksize != 0)
161 unsigned int cyc_per_byte = 1000 * cyc_per_blk / blksize;
185 int blksize = atoi(optarg);
186 if (blksize < 1 || blksize > POOLSIZE / 2)
188 fprintf(stderr, "Invalid block size %d\n", blksize);
191 BLKSIZE = (unsigned) blksize;
257 "-b <blksize> Block size\n"