Lines Matching defs:bits
213 char *bits;
230 if ((bits = malloc((nchunks + 7) / 8)) == NULL) {
231 tst_brkm(TBROK, NULL, "\tmalloc failed(bits)");
284 * zap bits array
304 memset(bits, 0, (nchunks + 7) / 8);
338 bits[chunk / 8] |= (1 << (chunk % 8));
339 } else if ((bits[chunk / 8] & (1 << (chunk % 8))) == 0) {
360 ft_dumpbits(bits,
365 bits[chunk / 8] |= (1 << (chunk % 8));
389 ft_dumpbits(bits,
437 if ((bits[i / 8] & (1 << (i % 8))) == 0) {