Searched refs:size_max (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/sys/fs/tmpfs/
H A Dtmpfs_vfsops.c334 off_t nodes_max, size_max, maxfilesize; local
351 if (vfs_getopt_size(mp->mnt_optnew, "size", &size_max) == 0) {
359 if (size_max != tmp->tm_size_max)
403 if (vfs_getopt_size(mp->mnt_optnew, "size", &size_max) != 0)
404 size_max = 0;
419 if (size_max == 0 || size_max > OFF_MAX - PAGE_SIZE ||
420 (SIZE_MAX < OFF_MAX && size_max / PAGE_SIZE >= SIZE_MAX))
423 size_max = roundup(size_max, PAGE_SIZ
[all...]
/freebsd-13-stable/sys/dev/virtio/block/
H A Dvirtio_blk.h62 uint32_t size_max; member in struct:virtio_blk_config
H A Dvirtio_blk.c338 if (blkcfg.size_max < maxphys) {
1169 VTBLK_GET_CONFIG(dev, VIRTIO_BLK_F_SIZE_MAX, size_max, blkcfg);
/freebsd-13-stable/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c37 * size <= size_max
81 uint32_t size_max; member in struct:dictionary
86 * size_max is always the same as the allocated size.)
1112 s->dict.size_max = dict_max;
1138 if (s->dict.size > s->dict.size_max)
/freebsd-13-stable/sys/dev/beri/virtio/
H A Dvirtio_block.c392 cfg->size_max = 0; /* not negotiated */
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_settings.cpp307 size_t size_min, size_t size_max,
313 size_max = __kmp_round4k(size_max);
321 if (*out > size_max) {
322 *out = size_max;
338 // size_max silently.
340 *out = size_max;
341 } else if (*out > size_max) {
342 *out = size_max;
306 __kmp_stg_parse_size(char const *name, char const *value, size_t size_min, size_t size_max, int *is_specified, size_t *out, size_t factor) argument

Completed in 136 milliseconds