Home
last modified time | relevance | path

Searched refs:fs_bsize (Results 1 – 2 of 2) sorted by relevance

/xnu-11215.1.10/bsd/kern/ !
H A Ddecmpfs.c1299 uint32_t fs_bsize = 0;
1356 fs_bsize = vp->v_mount->mnt_vfsstat.f_bsize;
1364 } else if (fs_bsize) {
1369 if (fs_bsize & (fs_bsize - 1)) {
1371 fs_bsize, PAGE_SIZE);
1373 } else if (fs_bsize > verify_block_size) {
1375 fs_bsize, verify_block_size);
1409 if (fs_bsize) {
1411 rounded_uplSize = (uplSize + (fs_bsize - 1)) & ~(fs_bsize - 1);
/xnu-11215.1.10/bsd/vfs/ !
H A Dvfs_cluster.c2802 uint32_t fs_bsize = vp->v_mount->mnt_vfsstat.f_bsize; in cluster_write_ext() local
2804 if (fs_bsize && (fs_bsize < MIN_DIRECT_WRITE_SIZE) && in cluster_write_ext()
2805 ((fs_bsize & (fs_bsize - 1)) == 0)) { in cluster_write_ext()
2806 min_direct_size = fs_bsize; in cluster_write_ext()