Lines Matching defs:nblocks64
1503 * implementation for size oriented properties based on nblocks64 and blksize
1504 * values passed in by the driver. Fallback to ddi_prop_op if the nblocks64
1505 * is too large. This interface should not be used with a nblocks64 that
1512 uint64_t nblocks64, uint_t blksize)
1522 * There is no point in supporting nblocks64 values that don't have
1525 if (nblocks64 >= (UINT64_MAX >> blkshift))
1529 size64 = nblocks64 << blkshift;
1539 int mod_flags, char *name, caddr_t valuep, int *lengthp, uint64_t nblocks64)
1542 mod_flags, name, valuep, lengthp, nblocks64, DEV_BSIZE));
1563 uint64_t nblocks64;
1588 nblocks64 = size64 >> blkshift;
1597 else if ((strcmp(name, "nblocks") == 0) && (nblocks64 < UINT_MAX))
1637 *((uint64_t *)buffer) = nblocks64;
1641 *((uint32_t *)buffer) = (uint32_t)nblocks64;