Home
last modified time | relevance | path

Searched refs:ivs (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/arch/x86/crypto/
H A Ddes3_ede_glue.c174 u64 ivs[3 - 1]; in __cbc_decrypt() local
190 ivs[0] = src[0]; in __cbc_decrypt()
191 ivs[1] = src[1]; in __cbc_decrypt()
195 dst[1] ^= ivs[0]; in __cbc_decrypt()
196 dst[2] ^= ivs[1]; in __cbc_decrypt()
/openbmc/linux/drivers/net/ethernet/chelsio/inline_crypto/chtls/
H A Dchtls_io.c225 unsigned char *ivs; in tls_copy_ivs() local
240 ivs = kmalloc_array(CIPHER_BLOCK_SIZE, number_of_ivs, GFP_ATOMIC); in tls_copy_ivs()
241 if (!ivs) in tls_copy_ivs()
243 get_random_bytes(ivs, number_of_ivs * CIPHER_BLOCK_SIZE); in tls_copy_ivs()
250 memcpy(iv_loc, ivs, number_of_ivs * CIPHER_BLOCK_SIZE); in tls_copy_ivs()
264 memcpy(page_address(page), ivs, number_of_ivs * in tls_copy_ivs()
271 kfree(ivs); in tls_copy_ivs()
/openbmc/qemu/hw/misc/
H A Divshmem.c130 static inline uint32_t ivshmem_has_feature(IVShmemState *ivs, in ivshmem_has_feature() argument
132 return (ivs->features & (1 << feature)); in ivshmem_has_feature()
/openbmc/linux/drivers/gpu/drm/tidss/
H A Dtidss_dispc.c1019 bool align, onoff, rf, ieo, ipc, ihs, ivs; in dispc_vp_enable() local
1049 ivs = !!(mode->flags & DRM_MODE_FLAG_NVSYNC); in dispc_vp_enable()
1076 FLD_VAL(ivs, 12, 12)); in dispc_vp_enable()
/openbmc/linux/net/core/
H A Drtnetlink.c2573 struct ifla_vf_spoofchk *ivs = nla_data(tb[IFLA_VF_SPOOFCHK]); in do_setvfinfo() local
2575 if (ivs->vf >= INT_MAX) in do_setvfinfo()
2579 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf, in do_setvfinfo()
2580 ivs->setting); in do_setvfinfo()