Home
last modified time | relevance | path

Searched refs:p_key (Results 1 - 22 of 22) sorted by relevance

/kernel/linux/linux-5.10/crypto/
H A Dcast6_generic.c110 __be32 p_key[8]; /* padded key */ in __cast6_setkey() local
115 memset(p_key, 0, 32); in __cast6_setkey()
116 memcpy(p_key, in_key, key_len); in __cast6_setkey()
118 key[0] = be32_to_cpu(p_key[0]); /* A */ in __cast6_setkey()
119 key[1] = be32_to_cpu(p_key[1]); /* B */ in __cast6_setkey()
120 key[2] = be32_to_cpu(p_key[2]); /* C */ in __cast6_setkey()
121 key[3] = be32_to_cpu(p_key[3]); /* D */ in __cast6_setkey()
122 key[4] = be32_to_cpu(p_key[4]); /* E */ in __cast6_setkey()
123 key[5] = be32_to_cpu(p_key[5]); /* F */ in __cast6_setkey()
124 key[6] = be32_to_cpu(p_key[ in __cast6_setkey()
[all...]
H A Dcast5_generic.c486 __be32 p_key[4]; in cast5_setkey() local
490 memset(p_key, 0, 16); in cast5_setkey()
491 memcpy(p_key, key, key_len); in cast5_setkey()
494 x[0] = be32_to_cpu(p_key[0]); in cast5_setkey()
495 x[1] = be32_to_cpu(p_key[1]); in cast5_setkey()
496 x[2] = be32_to_cpu(p_key[2]); in cast5_setkey()
497 x[3] = be32_to_cpu(p_key[3]); in cast5_setkey()
/kernel/linux/linux-6.6/crypto/
H A Dcast6_generic.c110 __be32 p_key[8]; /* padded key */ in __cast6_setkey() local
115 memset(p_key, 0, 32); in __cast6_setkey()
116 memcpy(p_key, in_key, key_len); in __cast6_setkey()
118 key[0] = be32_to_cpu(p_key[0]); /* A */ in __cast6_setkey()
119 key[1] = be32_to_cpu(p_key[1]); /* B */ in __cast6_setkey()
120 key[2] = be32_to_cpu(p_key[2]); /* C */ in __cast6_setkey()
121 key[3] = be32_to_cpu(p_key[3]); /* D */ in __cast6_setkey()
122 key[4] = be32_to_cpu(p_key[4]); /* E */ in __cast6_setkey()
123 key[5] = be32_to_cpu(p_key[5]); /* F */ in __cast6_setkey()
124 key[6] = be32_to_cpu(p_key[ in __cast6_setkey()
[all...]
H A Dcast5_generic.c482 __be32 p_key[4]; in cast5_setkey() local
486 memset(p_key, 0, 16); in cast5_setkey()
487 memcpy(p_key, key, key_len); in cast5_setkey()
490 x[0] = be32_to_cpu(p_key[0]); in cast5_setkey()
491 x[1] = be32_to_cpu(p_key[1]); in cast5_setkey()
492 x[2] = be32_to_cpu(p_key[2]); in cast5_setkey()
493 x[3] = be32_to_cpu(p_key[3]); in cast5_setkey()
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/compat/
H A Dhal_efuse.c202 hi_s32 hal_efuse_write_key(hi_u32 *p_key, hi_u32 opt_id) in hal_efuse_write_key() argument
214 hal_cipher_write_reg(CIPHER_KD_WKEY0, *p_key); in hal_efuse_write_key()
215 hal_cipher_write_reg(CIPHER_KD_WKEY1, *(p_key + WORD_IDX_1)); in hal_efuse_write_key()
216 hal_cipher_write_reg(CIPHER_KD_WKEY2, *(p_key + WORD_IDX_2)); in hal_efuse_write_key()
217 hal_cipher_write_reg(CIPHER_KD_WKEY3, *(p_key + WORD_IDX_3)); in hal_efuse_write_key()
H A Dhal_efuse.h30 hi_s32 hal_efuse_write_key(hi_u32 *p_key, hi_u32 opt_id);
/kernel/linux/linux-5.10/drivers/accessibility/speakup/
H A Dkeyhelp.c52 u_short *p_key, key; in build_key_data() local
94 p_key = key_data + offset + counters[ch1]; in build_key_data()
95 *p_key = key; in build_key_data()
/kernel/linux/linux-6.6/drivers/accessibility/speakup/
H A Dkeyhelp.c52 u_short *p_key, key; in build_key_data() local
94 p_key = key_data + offset + counters[ch1]; in build_key_data()
95 *p_key = key; in build_key_data()
/kernel/linux/linux-5.10/drivers/crypto/allwinner/sun8i-ss/
H A Dsun8i-ss-cipher.c191 rctx->p_key = dma_map_single(ss->dev, op->key, op->keylen, DMA_TO_DEVICE); in sun8i_ss_cipher()
192 if (dma_mapping_error(ss->dev, rctx->p_key)) { in sun8i_ss_cipher()
302 dma_unmap_single(ss->dev, rctx->p_key, op->keylen, DMA_TO_DEVICE); in sun8i_ss_cipher()
H A Dsun8i-ss.h173 * @p_key: DMA address of the key
187 u32 p_key; member
H A Dsun8i-ss-core.c106 writel(rctx->p_key, ss->base + SS_KEY_ADR_REG); in sun8i_ss_run_task()
/kernel/linux/linux-6.6/drivers/crypto/allwinner/sun8i-ss/
H A Dsun8i-ss-cipher.c217 rctx->p_key = dma_map_single(ss->dev, op->key, op->keylen, DMA_TO_DEVICE); in sun8i_ss_cipher()
218 if (dma_mapping_error(ss->dev, rctx->p_key)) { in sun8i_ss_cipher()
325 dma_unmap_single(ss->dev, rctx->p_key, op->keylen, DMA_TO_DEVICE); in sun8i_ss_cipher()
H A Dsun8i-ss.h176 * @p_key: DMA address of the key
190 u32 p_key; member
H A Dsun8i-ss-core.c108 writel(rctx->p_key, ss->base + SS_KEY_ADR_REG); in sun8i_ss_run_task()
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/
H A Dqed_roce.c295 p_ramrod->p_key = cpu_to_le16(qp->pkey); in qed_roce_sp_create_responder()
430 p_ramrod->p_key = cpu_to_le16(qp->pkey); in qed_roce_sp_create_requester()
567 p_ramrod->p_key = cpu_to_le16(qp->pkey); in qed_roce_sp_modify_responder()
653 p_ramrod->p_key = cpu_to_le16(qp->pkey); in qed_roce_sp_modify_requester()
H A Dqed_hsi.h7655 __le16 p_key; member
7723 __le16 p_key; member
7882 __le16 p_key; member
7929 __le16 p_key; member
/kernel/linux/linux-6.6/drivers/net/ethernet/qlogic/qed/
H A Dqed_roce.c295 p_ramrod->p_key = cpu_to_le16(qp->pkey); in qed_roce_sp_create_responder()
430 p_ramrod->p_key = cpu_to_le16(qp->pkey); in qed_roce_sp_create_requester()
567 p_ramrod->p_key = cpu_to_le16(qp->pkey); in qed_roce_sp_modify_responder()
653 p_ramrod->p_key = cpu_to_le16(qp->pkey); in qed_roce_sp_modify_requester()
H A Dqed_hsi.h6933 __le16 p_key; member
7005 __le16 p_key; member
7267 __le16 p_key; member
7316 __le16 p_key; member
/third_party/node/deps/v8/tools/v8windbg/src/
H A Dobject-inspection.cc474 const char16_t* p_key = reinterpret_cast<const char16_t*>(key); variable
475 if (prop.name.compare(p_key) == 0) {
/kernel/linux/linux-6.6/drivers/infiniband/hw/irdma/
H A Dtype.h813 u16 p_key; member
H A Dverbs.c1110 attr->pkey_index = iwqp->roce_info.p_key; in irdma_query_qp()
1221 &roce_info->p_key); in irdma_modify_qp_roce()
H A Dctrl.c692 FIELD_PREP(IRDMAQPC_PKEY, roce_info->p_key) | in irdma_sc_qp_setctx_roce()

Completed in 107 milliseconds