Lines Matching refs:blocksize
57 int blocksize = (1 << (log2_fs_blocksize + log2blksz)); in ext4fs_read_file() local
67 if (blocksize <= 0) in ext4fs_read_file()
74 blockcnt = lldiv(((len + pos) + blocksize - 1), blocksize); in ext4fs_read_file()
76 for (i = lldiv(pos, blocksize); i < blockcnt; i++) { in ext4fs_read_file()
78 int blockoff = pos - (blocksize * i); in ext4fs_read_file()
79 int blockend = blocksize; in ext4fs_read_file()
89 blockend = (len + pos) - (blocksize * i); in ext4fs_read_file()
93 blockend = blocksize; in ext4fs_read_file()
97 if (i == lldiv(pos, blocksize)) { in ext4fs_read_file()
145 n = blocksize - skipfirst; in ext4fs_read_file()
150 buf += blocksize - skipfirst; in ext4fs_read_file()