Lines Matching defs:blocksize
188 * filesystem with a blocksize of 4096.
1417 unsigned int blocksize = i_blocksize(inode);
1418 unsigned int offs = newsize & (blocksize - 1);
1421 blocksize - offs);
2447 unsigned int blocksize = i_blocksize(inode);
2454 start_off = offset & (blocksize - 1);
2455 end_len = (offset + length) & (blocksize - 1);
2458 if (length > blocksize - start_off)
2459 len = blocksize - start_off;
2463 if (start_off + length < blocksize)
2474 start = round_down(offset, blocksize);
2475 end = round_up(offset + length, blocksize) - 1;