Symbol: bounds
usr/src/cmd/format/io.c
1061
bounds = (struct bounds *)&param->io_bounds;
usr/src/cmd/format/io.c
1062
assert(bounds->lower == 0);
usr/src/cmd/format/io.c
1068
bounds->upper);
usr/src/cmd/format/io.c
1069
fmt_print(" %u cylinders, ", bn2c(bounds->upper));
usr/src/cmd/format/io.c
1070
fmt_print(" %1.2f megabytes, ", bn2mb(bounds->upper));
usr/src/cmd/format/io.c
1071
fmt_print("or %1.2f gigabytes\n", bn2gb(bounds->upper));
usr/src/cmd/format/io.c
1097
return (bounds->upper);
usr/src/cmd/format/io.c
1121
if (geti64(cleantoken, &bn64, &bounds->upper))
usr/src/cmd/format/io.c
1126
if ((bn64 < bounds->lower) || (bn64 > bounds->upper)) {
usr/src/cmd/format/io.c
1130
bn64, bounds->lower, bounds->upper);
usr/src/cmd/format/io.c
1153
i = bn2c(bounds->upper);
usr/src/cmd/format/io.c
1159
if (cyls > (bounds->upper / spc())) {
usr/src/cmd/format/io.c
1161
cyls, bounds->upper / spc());
usr/src/cmd/format/io.c
1180
if (nmegs > bn2mb(bounds->upper)) {
usr/src/cmd/format/io.c
1182
"[0-%1.2f]\n", nmegs, bn2mb(bounds->upper));
usr/src/cmd/format/io.c
1207
if (ngigs > bn2gb(bounds->upper)) {
usr/src/cmd/format/io.c
1209
"[0-%1.2f]\n", ngigs, bn2gb(bounds->upper));
usr/src/cmd/format/io.c
1234
bounds = (struct bounds *)&param->io_bounds;
usr/src/cmd/format/io.c
1235
assert(bounds->lower == 0);
usr/src/cmd/format/io.c
1242
bounds->upper);
usr/src/cmd/format/io.c
1244
bn2c(bounds->upper));
usr/src/cmd/format/io.c
1246
(uint_t)(bounds->upper / spc()));
usr/src/cmd/format/io.c
1248
bn2mb(bounds->upper));
usr/src/cmd/format/io.c
1250
bn2gb(bounds->upper));
usr/src/cmd/format/io.c
1280
return (bounds->upper);
usr/src/cmd/format/io.c
1309
if (geti64(cleantoken, &bn64, &bounds->upper))
usr/src/cmd/format/io.c
1315
if ((bn64 < bounds->lower) || (bn64 > bounds->upper)) {
usr/src/cmd/format/io.c
1318
bn64, bounds->lower, bounds->upper);
usr/src/cmd/format/io.c
1367
i = (bn2c(bounds->upper) + part_deflt->start_cyl - 1);
usr/src/cmd/format/io.c
1388
i = bn2c(bounds->upper);
usr/src/cmd/format/io.c
1396
if (cyls > (bounds->upper / spc())) {
usr/src/cmd/format/io.c
1398
cyls, bounds->upper / spc());
usr/src/cmd/format/io.c
1422
if (nmegs > bn2mb(bounds->upper)) {
usr/src/cmd/format/io.c
1424
"[0-%1.2f]\n", nmegs, bn2mb(bounds->upper));
usr/src/cmd/format/io.c
1454
if (ngigs > bn2gb(bounds->upper)) {
usr/src/cmd/format/io.c
1456
"[0-%1.2f]\n", ngigs, bn2gb(bounds->upper));
usr/src/cmd/format/io.c
1483
bounds = (struct bounds *)&param->io_bounds;
usr/src/cmd/format/io.c
1532
return (bounds->upper - reserved -
usr/src/cmd/format/io.c
1565
if (blokno > bounds->upper) {
usr/src/cmd/format/io.c
1622
if (nmegs > bn2mb(bounds->upper - bounds->lower)) {
usr/src/cmd/format/io.c
1625
bn2mb(bounds->upper - bounds->lower));
usr/src/cmd/format/io.c
1637
if (nmegs > bn2gb(bounds->upper - bounds->lower)) {
usr/src/cmd/format/io.c
1640
bn2gb(bounds->upper - bounds->lower));
usr/src/cmd/format/io.c
1652
if (nmegs > bn2tb(bounds->upper - bounds->lower)) {
usr/src/cmd/format/io.c
1655
bn2tb(bounds->upper - bounds->lower));
usr/src/cmd/format/io.c
421
struct bounds *bounds;
usr/src/cmd/format/io.c
760
bounds = (struct bounds *)&param->io_bounds;
usr/src/cmd/format/io.c
766
bounds->lower);
usr/src/cmd/format/io.c
767
pr_dblock(fmt_print, bounds->lower);
usr/src/cmd/format/io.c
768
fmt_print(") to %llu (", bounds->upper);
usr/src/cmd/format/io.c
769
pr_dblock(fmt_print, bounds->upper);
usr/src/cmd/format/io.c
786
if ((bn64 < bounds->lower) || (bn64 > bounds->upper)) {
usr/src/cmd/format/io.c
790
bounds->lower, bounds->upper);
usr/src/cmd/format/io.c
804
bounds = (struct bounds *)&param->io_bounds;
usr/src/cmd/format/io.c
810
bounds->lower);
usr/src/cmd/format/io.c
811
fmt_print(" to %llu\n", bounds->upper);
usr/src/cmd/format/io.c
822
if ((bn < bounds->lower) || (bn > bounds->upper)) {
usr/src/cmd/format/io.c
824
bounds->lower, bounds->upper);
usr/src/cmd/format/io.c
835
bounds = (struct bounds *)&param->io_bounds;
usr/src/cmd/format/io.c
841
bounds->lower);
usr/src/cmd/format/io.c
842
fmt_print(" to %llu\n", bounds->upper);
usr/src/cmd/format/io.c
854
if ((bn64 < bounds->lower) || (bn64 > bounds->upper)) {
usr/src/cmd/format/io.c
856
bn64, bounds->lower, bounds->upper);
usr/src/cmd/format/io.c
870
bounds = (struct bounds *)&param->io_bounds;
usr/src/cmd/format/io.c
876
bounds->lower);
usr/src/cmd/format/io.c
877
fmt_print(" to %llu, or no input\n", bounds->upper);
usr/src/cmd/format/io.c
888
if ((bn < bounds->lower) || (bn > bounds->upper)) {
usr/src/cmd/format/io.c
890
bounds->lower, bounds->upper);
usr/src/cmd/format/io.h
70
struct bounds io_bounds;
usr/src/cmd/savecore/savecore.c
1602
if (pl & SC_PAYLOAD_INSTANCE && bounds != -1)
usr/src/cmd/savecore/savecore.c
1603
err |= nvlist_add_int64(attr, "instance", bounds);
usr/src/cmd/savecore/savecore.c
1875
bounds = read_number_from_file("bounds", 0);
usr/src/cmd/savecore/savecore.c
1877
bounds = filebounds;
usr/src/cmd/savecore/savecore.c
1882
(void) sprintf(corefile, "vmdump.%ld", bounds);
usr/src/cmd/savecore/savecore.c
1950
(void) sprintf(namelist, "unix.%ld", bounds);
usr/src/cmd/savecore/savecore.c
1951
(void) sprintf(corefile, "vmcore.%ld", bounds);
usr/src/cmd/savecore/savecore.c
1958
corefile, savedir, bounds);
usr/src/cmd/savecore/savecore.c
1962
savedir, bounds);
usr/src/cmd/savecore/savecore.c
2006
(void) sprintf(boundstr, "%ld\n", bounds + 1);
usr/src/cmd/savecore/savecore.c
73
static long bounds = -1; /* numeric suffix */
usr/src/lib/libtsol/common/labeld.h
221
brange_t bounds;
usr/src/lib/libtsol/common/labeld.h
242
brange_t bounds;
usr/src/lib/libtsol/common/private.c
232
bslcvtfull(const bslabel_t *label, const blrange_t *bounds, int flags,
usr/src/lib/libtsol/common/private.c
245
bsfcall.bounds.upper_bound = *bounds->upper_bound;
usr/src/lib/libtsol/common/private.c
246
bsfcall.bounds.lower_bound = *bounds->lower_bound;
usr/src/lib/libtsol/common/private.c
279
sbounds.upper_bound = *bounds->upper_bound;
usr/src/lib/libtsol/common/private.c
280
sbounds.lower_bound = *bounds->lower_bound;
usr/src/lib/libtsol/common/private.c
338
bsccall.bounds = sbounds; /* save from last bslcvtfull() call */
usr/src/lib/libtsol/common/private.c
409
bclearcvtfull(const bclear_t *clearance, const blrange_t *bounds,
usr/src/lib/libtsol/common/private.c
422
bcfcall.bounds.upper_bound = *bounds->upper_bound;
usr/src/lib/libtsol/common/private.c
423
bcfcall.bounds.lower_bound = *bounds->lower_bound;
usr/src/lib/libtsol/common/private.c
458
cbounds.upper_bound = *bounds->upper_bound;
usr/src/lib/libtsol/common/private.c
459
cbounds.lower_bound = *bounds->lower_bound;
usr/src/lib/libtsol/common/private.c
518
bcccall.bounds = cbounds; /* save from last bslcvtfull() call */
usr/src/uts/common/sys/videodev2.h
629
struct v4l2_rect bounds;