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