Lines Matching defs:bits
226 char *bits;
243 if ((bits = malloc((nchunks + 7) / 8)) == NULL) {
244 tst_brkm(TBROK, NULL, "\tmalloc failed(bits)");
294 * zap bits array
314 memset(bits, 0, (nchunks + 7) / 8);
351 bits[chunk / 8] |= (1 << (chunk % 8));
352 } else if ((bits[chunk / 8] & (1 << (chunk % 8))) == 0) {
375 ft_dumpbits(bits,
380 bits[chunk / 8] |= (1 << (chunk % 8));
406 ft_dumpbits(bits,
454 if ((bits[i / 8] & (1 << (i % 8))) == 0) {