Lines Matching refs:nb
19 static s64 extRoundDown(s64 nb);
303 s64 nb, nblks, daddr, max;
321 nb = nblks = (max > nbperpage) ? max : nbperpage;
323 nb = nblks = *nblocks;
326 while ((rc = dbAlloc(ip, hint, nb, &daddr)) != 0) {
334 nb = min(nblks, extRoundDown(nb));
337 if (nb < nbperpage)
341 *nblocks = nb;
368 * nb - the inode of the file.
373 static s64 extRoundDown(s64 nb)
379 if (m & nb)
385 k = ((k - 1) & nb) ? k : k >> 1;