Home
last modified time | relevance | path

Searched refs:size_max (Results 1 – 5 of 5) sorted by relevance

/NextBSD/sys/fs/tmpfs/
HDtmpfs_vfsops.c143 off_t nodes_max, size_max, maxfilesize; in tmpfs_mount() local
185 if (vfs_getopt_size(mp->mnt_optnew, "size", &size_max) != 0) in tmpfs_mount()
186 size_max = 0; in tmpfs_mount()
199 if (size_max == 0 || size_max > OFF_MAX - PAGE_SIZE || in tmpfs_mount()
200 (SIZE_MAX < OFF_MAX && size_max / PAGE_SIZE >= SIZE_MAX)) in tmpfs_mount()
203 size_max = roundup(size_max, PAGE_SIZE); in tmpfs_mount()
204 pages = howmany(size_max, PAGE_SIZE); in tmpfs_mount()
/NextBSD/sys/dev/virtio/block/
HDvirtio_blk.h52 uint32_t size_max; member
HDvirtio_blk.c323 if (blkcfg.size_max < MAXPHYS) { in vtblk_attach()
1115 VTBLK_GET_CONFIG(dev, VIRTIO_BLK_F_SIZE_MAX, size_max, blkcfg); in vtblk_read_config()
/NextBSD/sys/contrib/xz-embedded/linux/lib/xz/
HDxz_dec_lzma2.c81 uint32_t size_max; member
1112 s->dict.size_max = dict_max; in xz_dec_lzma2_create()
1138 if (s->dict.size > s->dict.size_max) in xz_dec_lzma2_reset()
/NextBSD/sys/dev/beri/virtio/
HDvirtio_block.c393 cfg->size_max = 0; /* not negotiated */ in backend_info()