Lines Matching refs:nchunks
250 int nchunks; variable
265 nchunks = max_size / csize; in dotest()
267 if ((bits = calloc((nchunks + 7) / 8, 1)) == NULL) { in dotest()
272 if ((hold_bits = calloc((nchunks + 7) / 8, 1)) == NULL) { in dotest()
320 memset(bits, 0, (nchunks + 7) / 8); in dotest()
321 memset(hold_bits, 0, (nchunks + 7) / 8); in dotest()
326 while (count < nchunks) { in dotest()
327 chunk = rand() % nchunks; in dotest()
370 ft_dumpbits(bits, (nchunks + 7) / 8); in dotest()
372 (nchunks + 7) / 8); in dotest()
375 (nchunks + 7) / 8); in dotest()
401 ft_dumpbits(bits, (nchunks + 7) / 8); in dotest()
403 (nchunks + 7) / 8); in dotest()
406 (nchunks + 7) / 8); in dotest()
437 ft_orbits(hold_bits, bits, (nchunks + 7) / 8); in dotest()
441 if (count + collide > 2 * nchunks) in dotest()
498 for (; chunk < nchunks; chunk += 8) in domisc()