Lines Matching defs:nblocks
898 long nblocks;
908 nblocks = cp->mt_span / cp->mt_size;
909 nblocks >>= 3;
910 if (nblocks == 0) { /* less than 8 free blocks in this pool */
920 nblocks = numblocks;
929 nblocks, 32);
930 /* recompute nblocks */
931 nblocks = (uintptr_t)((caddr_t)cp->mt_freelist +
933 cp->mt_nfree = ((nblocks >> 3) << 3);
935 (void) memset(cp->mt_freelist, 0xff, nblocks >> 3);
939 copy_pattern(FREEPATTERN, cp->mt_arena, cp->mt_size * nblocks);