Lines Matching refs:nb
35 static s64 extRoundDown(s64 nb);
513 s64 nb, nblks, daddr, max; in extBalloc() local
526 nb = nblks = (max > nbperpage) ? max : nbperpage; in extBalloc()
528 nb = nblks = *nblocks; in extBalloc()
531 while ((rc = dbAlloc(ip, hint, nb, &daddr)) != 0) { in extBalloc()
539 nb = min(nblks, extRoundDown(nb)); in extBalloc()
542 if (nb < nbperpage) in extBalloc()
546 *nblocks = nb; in extBalloc()
636 static s64 extRoundDown(s64 nb) in extRoundDown() argument
642 if (m & nb) in extRoundDown()
648 k = ((k - 1) & nb) ? k : k >> 1; in extRoundDown()