Lines Matching refs:nchunks
249 int nchunks; variable
264 nchunks = max_size / csize; in dotest()
266 if ((bits = calloc((nchunks + 7) / 8, 1)) == NULL) { in dotest()
271 if ((hold_bits = calloc((nchunks + 7) / 8, 1)) == NULL) { in dotest()
319 memset(bits, 0, (nchunks + 7) / 8); in dotest()
320 memset(hold_bits, 0, (nchunks + 7) / 8); in dotest()
325 while (count < nchunks) { in dotest()
326 chunk = rand() % nchunks; in dotest()
369 ft_dumpbits(bits, (nchunks + 7) / 8); in dotest()
371 (nchunks + 7) / 8); in dotest()
374 (nchunks + 7) / 8); in dotest()
400 ft_dumpbits(bits, (nchunks + 7) / 8); in dotest()
402 (nchunks + 7) / 8); in dotest()
405 (nchunks + 7) / 8); in dotest()
436 ft_orbits(hold_bits, bits, (nchunks + 7) / 8); in dotest()
440 if (count + collide > 2 * nchunks) in dotest()
497 for (; chunk < nchunks; chunk += 8) in domisc()