/Linux-v6.1/fs/hfsplus/ |
D | wrapper.c | 166 u32 blocksize; in hfsplus_read_wrapper() local 170 blocksize = sb_min_blocksize(sb, HFSPLUS_SECTOR_SIZE); in hfsplus_read_wrapper() 171 if (!blocksize) in hfsplus_read_wrapper() 230 blocksize = be32_to_cpu(sbi->s_vhdr->blocksize); in hfsplus_read_wrapper() 235 if (blocksize < HFSPLUS_SECTOR_SIZE || ((blocksize - 1) & blocksize)) in hfsplus_read_wrapper() 237 sbi->alloc_blksz = blocksize; in hfsplus_read_wrapper() 238 sbi->alloc_blksz_shift = ilog2(blocksize); in hfsplus_read_wrapper() 239 blocksize = min_t(u32, sbi->alloc_blksz, PAGE_SIZE); in hfsplus_read_wrapper() 244 while (part_start & ((blocksize >> HFSPLUS_SECTOR_SHIFT) - 1)) in hfsplus_read_wrapper() 245 blocksize >>= 1; in hfsplus_read_wrapper() [all …]
|
/Linux-v6.1/block/partitions/ |
D | ibm.c | 67 int blocksize, in find_label() argument 93 testsect[0] = info->label_block * (blocksize >> 9); in find_label() 97 testsect[1] = (blocksize >> 9); in find_label() 98 testsect[2] = 2 * (blocksize >> 9); in find_label() 135 int blocksize, in find_vol1_partitions() argument 154 secperblk = blocksize >> 9; in find_vol1_partitions() 197 int blocksize, in find_lnx1_partitions() argument 210 secperblk = blocksize >> 9; in find_lnx1_partitions() 244 int blocksize, in find_cms1_partitions() argument 256 blocksize = label->cms.block_size; in find_cms1_partitions() [all …]
|
/Linux-v6.1/drivers/mtd/parsers/ |
D | bcm47xxpart.c | 95 uint32_t blocksize = master->erasesize; in bcm47xxpart_parse() local 105 if (blocksize < 0x1000) in bcm47xxpart_parse() 106 blocksize = 0x1000; in bcm47xxpart_parse() 121 for (offset = 0; offset <= master->size - blocksize; in bcm47xxpart_parse() 122 offset += blocksize) { in bcm47xxpart_parse() 206 trx_size = max(trx->length, last_subpart + blocksize); in bcm47xxpart_parse() 212 offset += roundup(trx_size, blocksize) - blocksize; in bcm47xxpart_parse() 228 if (offset != master->size - blocksize && in bcm47xxpart_parse() 236 err = mtd_read(master, offset + (blocksize / 2), 0x4, &bytes_read, in bcm47xxpart_parse() 240 offset + (blocksize / 2), err); in bcm47xxpart_parse() [all …]
|
/Linux-v6.1/sound/pci/emu10k1/ |
D | emu10k1_patch.c | 30 int truesize, size, blocksize; in snd_emu10k1_sample_new() local 76 blocksize = truesize; in snd_emu10k1_sample_new() 78 blocksize *= 2; in snd_emu10k1_sample_new() 79 sp->block = snd_emu10k1_synth_alloc(emu, blocksize); in snd_emu10k1_sample_new() 82 "synth malloc failed (size=%d)\n", blocksize); in snd_emu10k1_sample_new() 87 sp->v.truesize = blocksize; in snd_emu10k1_sample_new() 94 if (offset + size > blocksize) in snd_emu10k1_sample_new() 103 if (offset + size > blocksize) in snd_emu10k1_sample_new() 121 if (offset + loopsize * 2 > blocksize) in snd_emu10k1_sample_new() 127 if (offset + loopsize > blocksize) in snd_emu10k1_sample_new() [all …]
|
/Linux-v6.1/fs/nilfs2/ |
D | the_nilfs.c | 227 int blocksize; in load_nilfs() local 248 blocksize = BLOCK_SIZE << le32_to_cpu(sbp[0]->s_log_block_size); in load_nilfs() 249 if (blocksize != nilfs->ns_blocksize) { in load_nilfs() 252 blocksize, nilfs->ns_blocksize); in load_nilfs() 487 struct super_block *sb, int blocksize, in nilfs_load_super_block() argument 495 sbp[0] = nilfs_read_super_block(sb, NILFS_SB_OFFSET_BYTES, blocksize, in nilfs_load_super_block() 497 sbp[1] = nilfs_read_super_block(sb, sb2off, blocksize, &sbh[1]); in nilfs_load_super_block() 506 blocksize); in nilfs_load_super_block() 510 blocksize); in nilfs_load_super_block() 539 blocksize); in nilfs_load_super_block() [all …]
|
/Linux-v6.1/include/crypto/ |
D | ctr.h | 25 int blocksize = crypto_skcipher_chunksize(tfm); in crypto_ctr_encrypt_walk() local 31 if (WARN_ON_ONCE(!is_power_of_2(blocksize))) in crypto_ctr_encrypt_walk() 43 tail = walk.nbytes & (blocksize - 1); in crypto_ctr_encrypt_walk() 48 int bsize = min(nbytes, blocksize); in crypto_ctr_encrypt_walk() 53 crypto_inc(walk.iv, blocksize); in crypto_ctr_encrypt_walk()
|
/Linux-v6.1/fs/ocfs2/ |
D | blockcheck.c | 144 u32 ocfs2_hamming_encode_block(void *data, unsigned int blocksize) in ocfs2_hamming_encode_block() argument 146 return ocfs2_hamming_encode(0, data, blocksize * 8, 0); in ocfs2_hamming_encode_block() 212 void ocfs2_hamming_fix_block(void *data, unsigned int blocksize, in ocfs2_hamming_fix_block() argument 215 ocfs2_hamming_fix(data, blocksize * 8, 0, fix); in ocfs2_hamming_fix_block() 349 void ocfs2_block_check_compute(void *data, size_t blocksize, in ocfs2_block_check_compute() argument 357 crc = crc32_le(~0, data, blocksize); in ocfs2_block_check_compute() 358 ecc = ocfs2_hamming_encode_block(data, blocksize); in ocfs2_block_check_compute() 378 int ocfs2_block_check_validate(void *data, size_t blocksize, in ocfs2_block_check_validate() argument 395 crc = crc32_le(~0, data, blocksize); in ocfs2_block_check_validate() 405 ecc = ocfs2_hamming_encode_block(data, blocksize); in ocfs2_block_check_validate() [all …]
|
D | ocfs2_fs.h | 1229 static inline struct ocfs2_disk_dqtrailer *ocfs2_block_dqtrailer(int blocksize, in ocfs2_block_dqtrailer() argument 1233 ptr += blocksize - OCFS2_QBLK_RESERVED_SPACE; in ocfs2_block_dqtrailer() 1438 static inline int ocfs2_fast_symlink_chars(int blocksize) in ocfs2_fast_symlink_chars() argument 1440 return blocksize - offsetof(struct ocfs2_dinode, id2.i_symlink); in ocfs2_fast_symlink_chars() 1443 static inline int ocfs2_max_inline_data_with_xattr(int blocksize, in ocfs2_max_inline_data_with_xattr() argument 1447 return blocksize - in ocfs2_max_inline_data_with_xattr() 1451 return blocksize - in ocfs2_max_inline_data_with_xattr() 1455 static inline int ocfs2_extent_recs_per_inode(int blocksize) in ocfs2_extent_recs_per_inode() argument 1459 size = blocksize - in ocfs2_extent_recs_per_inode() 1465 static inline int ocfs2_chain_recs_per_inode(int blocksize) in ocfs2_chain_recs_per_inode() argument [all …]
|
D | blockcheck.h | 42 void ocfs2_block_check_compute(void *data, size_t blocksize, 44 int ocfs2_block_check_validate(void *data, size_t blocksize, 91 extern u32 ocfs2_hamming_encode_block(void *data, unsigned int blocksize); 92 extern void ocfs2_hamming_fix_block(void *data, unsigned int blocksize,
|
/Linux-v6.1/fs/affs/ |
D | super.c | 191 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts) in parse_options() argument 202 *blocksize = -1; in parse_options() 224 *blocksize = n; in parse_options() 340 int size, blocksize; in affs_fill_super() local 374 &blocksize,&sbi->s_prefix, in affs_fill_super() 400 if (blocksize > 0) { in affs_fill_super() 401 i = j = blocksize; in affs_fill_super() 402 size = size / (blocksize / 512); in affs_fill_super() 405 for (blocksize = i; blocksize <= j; blocksize <<= 1, size >>= 1) { in affs_fill_super() 409 pr_debug("setting blocksize to %d\n", blocksize); in affs_fill_super() [all …]
|
/Linux-v6.1/net/sunrpc/auth_gss/ |
D | gss_krb5_wrap.c | 43 gss_krb5_padding(int blocksize, int length) in gss_krb5_padding() argument 45 return blocksize - (length % blocksize); in gss_krb5_padding() 49 gss_krb5_add_padding(struct xdr_buf *buf, int offset, int blocksize) in gss_krb5_add_padding() argument 51 int padding = gss_krb5_padding(blocksize, buf->len - offset); in gss_krb5_add_padding() 66 gss_krb5_remove_padding(struct xdr_buf *buf, int blocksize) in gss_krb5_remove_padding() argument 107 if (pad > blocksize) in gss_krb5_remove_padding() 164 int blocksize = 0, plainlen; in gss_wrap_kerberos_v1() local 177 blocksize = crypto_sync_skcipher_blocksize(kctx->enc); in gss_wrap_kerberos_v1() 178 gss_krb5_add_padding(buf, offset, blocksize); in gss_wrap_kerberos_v1() 179 BUG_ON((buf->len - offset) % blocksize); in gss_wrap_kerberos_v1() [all …]
|
D | gss_krb5_keys.c | 147 size_t blocksize, keybytes, keylength, n; in krb5_derive_key() local 153 blocksize = gk5e->blocksize; in krb5_derive_key() 169 inblockdata = kmalloc(blocksize, gfp_mask); in krb5_derive_key() 173 outblockdata = kmalloc(blocksize, gfp_mask); in krb5_derive_key() 182 inblock.len = blocksize; in krb5_derive_key() 185 outblock.len = blocksize; in krb5_derive_key()
|
/Linux-v6.1/drivers/ssb/ |
D | driver_chipcommon_sflash.c | 28 u32 blocksize; member 149 sflash->blocksize = e->blocksize; in ssb_sflash_init() 151 sflash->size = sflash->blocksize * sflash->numblocks; in ssb_sflash_init() 155 e->name, sflash->size / 1024, e->blocksize, e->numblocks); in ssb_sflash_init()
|
/Linux-v6.1/drivers/bcma/ |
D | driver_chipcommon_sflash.c | 29 u32 blocksize; member 149 sflash->blocksize = e->blocksize; in bcma_sflash_init() 151 sflash->size = sflash->blocksize * sflash->numblocks; in bcma_sflash_init() 155 e->name, sflash->size / 1024, sflash->blocksize, in bcma_sflash_init()
|
/Linux-v6.1/fs/ |
D | buffer.c | 560 sector_t bblock, unsigned blocksize) in write_boundary_block() argument 562 struct buffer_head *bh = __find_get_block(bdev, bblock + 1, blocksize); in write_boundary_block() 1539 unsigned long blocksize, unsigned long b_state) in create_empty_buffers() argument 1543 head = alloc_page_buffers(page, blocksize, true); in create_empty_buffers() 1650 static inline int block_size_bits(unsigned int blocksize) in block_size_bits() argument 1652 return ilog2(blocksize); in block_size_bits() 1702 unsigned int blocksize, bbits; in __block_write_full_page() local 1720 blocksize = bh->b_size; in __block_write_full_page() 1721 bbits = block_size_bits(blocksize); in __block_write_full_page() 1744 WARN_ON(bh->b_size != blocksize); in __block_write_full_page() [all …]
|
/Linux-v6.1/fs/crypto/ |
D | crypto.c | 180 const unsigned int blocksize = 1 << blockbits; in fscrypt_encrypt_pagecache_blocks() local 190 if (WARN_ON_ONCE(len <= 0 || !IS_ALIGNED(len | offs, blocksize))) in fscrypt_encrypt_pagecache_blocks() 197 for (i = offs; i < offs + len; i += blocksize, lblk_num++) { in fscrypt_encrypt_pagecache_blocks() 200 blocksize, i, gfp_flags); in fscrypt_encrypt_pagecache_blocks() 260 const unsigned int blocksize = 1 << blockbits; in fscrypt_decrypt_pagecache_blocks() local 269 if (WARN_ON_ONCE(len <= 0 || !IS_ALIGNED(len | offs, blocksize))) in fscrypt_decrypt_pagecache_blocks() 272 for (i = offs; i < offs + len; i += blocksize, lblk_num++) { in fscrypt_decrypt_pagecache_blocks() 274 page, blocksize, i, GFP_NOFS); in fscrypt_decrypt_pagecache_blocks()
|
/Linux-v6.1/drivers/crypto/qce/ |
D | sha.c | 193 unsigned int blocksize; in qce_ahash_update() local 195 blocksize = crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm)); in qce_ahash_update() 201 if (total <= blocksize) { in qce_ahash_update() 220 hash_later = total % blocksize; in qce_ahash_update() 238 hash_later = blocksize; in qce_ahash_update() 337 unsigned int blocksize; in qce_ahash_hmac_setkey() local 343 blocksize = crypto_tfm_alg_blocksize(crypto_ahash_tfm(tfm)); in qce_ahash_hmac_setkey() 346 if (keylen <= blocksize) { in qce_ahash_hmac_setkey() 408 unsigned int blocksize; member 419 .blocksize = SHA1_BLOCK_SIZE, [all …]
|
D | skcipher.c | 262 unsigned int blocksize = crypto_skcipher_blocksize(tfm); in qce_skcipher_crypt() local 279 if (!IS_ALIGNED(req->cryptlen, blocksize)) in qce_skcipher_crypt() 353 unsigned int blocksize; member 365 .blocksize = AES_BLOCK_SIZE, 374 .blocksize = AES_BLOCK_SIZE, 383 .blocksize = 1, 393 .blocksize = AES_BLOCK_SIZE, 402 .blocksize = DES_BLOCK_SIZE, 411 .blocksize = DES_BLOCK_SIZE, 420 .blocksize = DES3_EDE_BLOCK_SIZE, [all …]
|
/Linux-v6.1/include/uapi/linux/ |
D | cryptouser.h | 153 unsigned int blocksize; member 159 unsigned int blocksize; member 167 unsigned int blocksize; member 176 unsigned int blocksize; member
|
/Linux-v6.1/drivers/crypto/ccp/ |
D | ccp-crypto-aes.c | 244 unsigned int blocksize; member 255 .blocksize = AES_BLOCK_SIZE, 264 .blocksize = AES_BLOCK_SIZE, 273 .blocksize = 1, 282 .blocksize = 1, 291 .blocksize = 1, 300 .blocksize = 1, 327 alg->base.cra_blocksize = def->blocksize; in ccp_register_aes_alg()
|
/Linux-v6.1/drivers/crypto/ccree/ |
D | cc_cipher.c | 1013 .blocksize = 1, 1031 .blocksize = AES_BLOCK_SIZE, 1049 .blocksize = AES_BLOCK_SIZE, 1067 .blocksize = AES_BLOCK_SIZE, 1085 .blocksize = AES_BLOCK_SIZE, 1103 .blocksize = AES_BLOCK_SIZE, 1121 .blocksize = 1, 1143 .blocksize = 1, 1160 .blocksize = AES_BLOCK_SIZE, 1177 .blocksize = AES_BLOCK_SIZE, [all …]
|
/Linux-v6.1/drivers/usb/storage/ |
D | alauda.c | 88 unsigned int blocksize; /* number of pages per block */ member 431 MEDIA_INFO(us).blocksize = 1 << media_info->blockshift; in alauda_init_media() 435 MEDIA_INFO(us).blockmask = MEDIA_INFO(us).blocksize - 1; in alauda_init_media() 788 (MEDIA_INFO(us).pagesize + 64) * MEDIA_INFO(us).blocksize, in alauda_write_block() 810 unsigned int blocksize = MEDIA_INFO(us).blocksize; in alauda_write_lba() local 838 blocksize, blockbuffer); in alauda_write_lba() 842 memset(blockbuffer, 0, blocksize * (pagesize + 64)); in alauda_write_lba() 850 for (i = 0; i < blocksize; i++) { in alauda_write_lba() 913 unsigned int blocksize = MEDIA_INFO(us).blocksize; in alauda_read_data() local 927 len = min(sectors, blocksize) * (pagesize + 64); in alauda_read_data() [all …]
|
/Linux-v6.1/fs/ext4/ |
D | namei.c | 314 int count, unsigned int blocksize); 316 unsigned int blocksize); 331 unsigned int blocksize) in ext4_initialize_dirent_tail() argument 333 struct ext4_dir_entry_tail *t = EXT4_DIRENT_TAIL(bh->b_data, blocksize); in ext4_initialize_dirent_tail() 337 sizeof(struct ext4_dir_entry_tail), blocksize); in ext4_initialize_dirent_tail() 555 ext4_next_entry(struct ext4_dir_entry_2 *p, unsigned long blocksize) in ext4_next_entry() argument 558 ext4_rec_len_from_disk(p->rec_len, blocksize)); in ext4_next_entry() 740 unsigned blocksize = dir->i_sb->s_blocksize; in dx_show_entries() local 758 bh->b_data, blocksize, 0); in dx_show_entries() 767 (space/bcount)*100/blocksize); in dx_show_entries() [all …]
|
D | move_extent.c | 174 unsigned int blocksize, block_start, block_end; in mext_page_mkuptodate() local 182 blocksize = i_blocksize(inode); in mext_page_mkuptodate() 184 create_empty_buffers(page, blocksize, 0); in mext_page_mkuptodate() 190 block_end = block_start + blocksize; in mext_page_mkuptodate() 205 zero_user(page, block_start, blocksize); in mext_page_mkuptodate() 258 unsigned long blocksize = orig_inode->i_sb->s_blocksize; in move_extent_per_page() local 290 tmp_data_size = orig_inode->i_size & (blocksize - 1); in move_extent_per_page() 296 tmp_data_size = blocksize; in move_extent_per_page() 456 unsigned int blocksize = 1 << blkbits; in mext_check_arguments() local 458 orig_eof = (i_size_read(orig_inode) + blocksize - 1) >> blkbits; in mext_check_arguments() [all …]
|
/Linux-v6.1/drivers/mtd/devices/ |
D | bcm47xxsflash.c | 81 if (b47s->blocksize < (64 * 1024)) in bcm47xxsflash_erase() 177 u32 mask = b47s->blocksize - 1; in bcm47xxsflash_write_at() 183 if (byte || (len < b47s->blocksize)) { in bcm47xxsflash_write_at() 199 if (byte == b47s->blocksize) in bcm47xxsflash_write_at() 261 mtd->erasesize = b47s->blocksize; in bcm47xxsflash_fill_mtd() 340 b47s->blocksize = sflash->blocksize; in bcm47xxsflash_bcma_probe()
|