Home
last modified time | relevance | path

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

/linux/crypto/
H A Dskcipher.c464 u8 *ivs = skcipher_request_ctx(req); in crypto_lskcipher_export() local
466 ivs = PTR_ALIGN(ivs, crypto_skcipher_alignmask(tfm) + 1); in crypto_lskcipher_export()
468 memcpy(out, ivs + crypto_skcipher_ivsize(tfm), in crypto_lskcipher_export()
477 u8 *ivs = skcipher_request_ctx(req); in crypto_lskcipher_import() local
479 ivs = PTR_ALIGN(ivs, crypto_skcipher_alignmask(tfm) + 1); in crypto_lskcipher_import()
481 memcpy(ivs + crypto_skcipher_ivsize(tfm), in, in crypto_lskcipher_import()
/linux/net/core/
H A Drtnetlink.c2854 struct ifla_vf_spoofchk *ivs = nla_data(tb[IFLA_VF_SPOOFCHK]); in do_setvfinfo() local
2856 if (ivs->vf >= INT_MAX) in do_setvfinfo()
2860 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf, in do_setvfinfo()
2861 ivs->setting); in do_setvfinfo()