Symbol: BLOCK_SIZE
arch/alpha/boot/tools/objstrip.c
123
size = (st.st_size + BLOCK_SIZE - 1) & ~(BLOCK_SIZE - 1);
arch/alpha/boot/tools/objstrip.c
126
bb[60] = size / BLOCK_SIZE; /* count */
arch/alpha/boot/tools/objstrip.c
76
pad = BLOCK_SIZE;
fs/adfs/super.c
262
unsigned int blocksize = BLOCK_SIZE;
fs/ext2/super.c
1015
logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
fs/ext2/super.c
1016
offset = (sb_block*BLOCK_SIZE) % blocksize;
fs/ext2/super.c
890
int blocksize = BLOCK_SIZE;
fs/ext2/super.c
921
blocksize = sb_min_blocksize(sb, BLOCK_SIZE);
fs/ext2/super.c
931
if (blocksize != BLOCK_SIZE) {
fs/ext2/super.c
932
logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
fs/ext2/super.c
933
offset = (sb_block*BLOCK_SIZE) % blocksize;
fs/ext2/super.c
992
blocksize = BLOCK_SIZE << le32_to_cpu(sbi->s_es->s_log_block_size);
fs/ext4/super.c
4441
clustersize = BLOCK_SIZE << le32_to_cpu(es->s_log_cluster_size);
fs/freevxfs/vxfs_super.c
202
bsize = sb_min_blocksize(sbp, BLOCK_SIZE);
fs/minix/inode.c
211
sb->s_maxbytes > (7 + 512 + 512*512) * BLOCK_SIZE)
fs/minix/inode.c
237
if (!sb_set_blocksize(s, BLOCK_SIZE))
fs/minix/inode.c
712
stat->blocks = (BLOCK_SIZE / 512) * V1_minix_blocks(stat->size, sb);
fs/minix/itree_v1.c
34
if ((u64)block * BLOCK_SIZE >= inode->i_sb->s_maxbytes)
fs/nilfs2/the_nilfs.c
219
*blocksize = BLOCK_SIZE << shift_bits;
fs/nilfs2/the_nilfs.c
451
if (nilfs->ns_sbsize > BLOCK_SIZE)
fs/nilfs2/the_nilfs.c
533
if (bytes < sumoff + 4 || bytes > BLOCK_SIZE)
fs/quota/quota_v1.c
141
off = isize & (BLOCK_SIZE - 1);
fs/quota/quota_v1.c
142
if ((blocks % sizeof(struct v1_disk_dqblk) * BLOCK_SIZE + off) %
include/uapi/linux/minix_fs.h
29
#define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode)))
include/uapi/linux/romfs_fs.h
10
#define ROMBSIZE BLOCK_SIZE
init/do_mounts_rd.c
100
nblocks = (ntohl(romfsb->size)+BLOCK_SIZE-1)>>BLOCK_SIZE_BITS;
init/do_mounts_rd.c
108
nblocks = (cramfsb->size + BLOCK_SIZE - 1) >> BLOCK_SIZE_BITS;
init/do_mounts_rd.c
117
nblocks = (le64_to_cpu(squashfsb->bytes_used) + BLOCK_SIZE - 1)
init/do_mounts_rd.c
125
pos = start_block * BLOCK_SIZE + 0x200;
init/do_mounts_rd.c
132
nblocks = (cramfsb->size + BLOCK_SIZE - 1) >> BLOCK_SIZE_BITS;
init/do_mounts_rd.c
139
pos = (start_block + 1) * BLOCK_SIZE;
init/do_mounts_rd.c
198
in_pos = rd_image_start * BLOCK_SIZE;
init/do_mounts_rd.c
230
buf = kmalloc(BLOCK_SIZE, GFP_KERNEL);
init/do_mounts_rd.c
246
kernel_read(in_file, buf, BLOCK_SIZE, &in_pos);
init/do_mounts_rd.c
247
kernel_write(out_file, buf, BLOCK_SIZE, &out_pos);
init/do_mounts_rd.c
79
pos = start_block * BLOCK_SIZE;
tools/testing/selftests/vDSO/vdso_test_chacha.c
104
__arch_chacha20_blocks_nostack(output2 + split * BLOCK_SIZE, key, counter2, BLOCKS - split);
tools/testing/selftests/vDSO/vdso_test_chacha.c
87
uint8_t output1[BLOCK_SIZE * BLOCKS], output2[BLOCK_SIZE * BLOCKS];