Lines Matching refs:sb

15 fs64_to_cpu(const struct super_block *sb, fs64 n)  in fs64_to_cpu()  argument
17 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) in fs64_to_cpu()
24 cpu_to_fs64(const struct super_block *sb, u64 n) in cpu_to_fs64() argument
26 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) in cpu_to_fs64()
33 fs32_to_cpu(const struct super_block *sb, fs32 n) in fs32_to_cpu() argument
35 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) in fs32_to_cpu()
42 cpu_to_fs32(const struct super_block *sb, u32 n) in cpu_to_fs32() argument
44 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) in cpu_to_fs32()
51 fs16_to_cpu(const struct super_block *sb, fs16 n) in fs16_to_cpu() argument
53 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) in fs16_to_cpu()
60 cpu_to_fs16(const struct super_block *sb, u16 n) in cpu_to_fs16() argument
62 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) in cpu_to_fs16()
71 fsrun_to_cpu(const struct super_block *sb, befs_disk_block_run n) in fsrun_to_cpu() argument
75 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) { in fsrun_to_cpu()
88 cpu_to_fsrun(const struct super_block *sb, befs_block_run n) in cpu_to_fsrun() argument
92 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) { in cpu_to_fsrun()
105 fsds_to_cpu(const struct super_block *sb, const befs_disk_data_stream *n) in fsds_to_cpu() argument
111 data.direct[i] = fsrun_to_cpu(sb, n->direct[i]); in fsds_to_cpu()
113 data.max_direct_range = fs64_to_cpu(sb, n->max_direct_range); in fsds_to_cpu()
114 data.indirect = fsrun_to_cpu(sb, n->indirect); in fsds_to_cpu()
115 data.max_indirect_range = fs64_to_cpu(sb, n->max_indirect_range); in fsds_to_cpu()
116 data.double_indirect = fsrun_to_cpu(sb, n->double_indirect); in fsds_to_cpu()
117 data.max_double_indirect_range = fs64_to_cpu(sb, in fsds_to_cpu()
120 data.size = fs64_to_cpu(sb, n->size); in fsds_to_cpu()