Home
last modified time | relevance | path

Searched refs:ctxsize (Results 1 – 8 of 8) sorted by relevance

/Linux-v5.10/fs/crypto/
Dpolicy.c391 int ctxsize; in set_encryption_policy() local
428 ctxsize = fscrypt_new_context(&ctx, policy, nonce); in set_encryption_policy()
430 return inode->i_sb->s_cop->set_context(inode, &ctx, ctxsize, NULL); in set_encryption_policy()
672 int ctxsize; in fscrypt_set_context() local
679 ctxsize = fscrypt_new_context(&ctx, &ci->ci_policy, ci->ci_nonce); in fscrypt_set_context()
693 return inode->i_sb->s_cop->set_context(inode, &ctx, ctxsize, fs_data); in fscrypt_set_context()
/Linux-v5.10/drivers/net/ethernet/cavium/liquidio/
Docteon_iq.h292 u32 ctxsize; member
334 u32 ctxsize);
Drequest_manager.c858 u32 ctxsize) in octeon_alloc_soft_command() argument
869 WARN_ON((offset + datasize + rdatasize + ctxsize) > in octeon_alloc_soft_command()
898 if (ctxsize) { in octeon_alloc_soft_command()
900 sc->ctxsize = ctxsize; in octeon_alloc_soft_command()
904 offset = (offset + ctxsize + 127) & 0xffffff80; in octeon_alloc_soft_command()
/Linux-v5.10/drivers/crypto/cavium/zip/
Dzip_main.h106 u64 ctxsize; member
Dzip_main.c144 zip->ctxsize = constants.s.ctxsize; in zip_init_hw()
147 zip->depth, zip->onfsize, zip->ctxsize); in zip_init_hw()
Dzip_regs.h406 u64 ctxsize : 12; member
412 u64 ctxsize : 12;
/Linux-v5.10/include/crypto/
Dalgapi.h32 unsigned int (*ctxsize)(struct crypto_alg *alg, u32 type, u32 mask); member
/Linux-v5.10/crypto/
Dapi.c318 return len + type_obj->ctxsize(alg, type, mask); in crypto_ctxsize()