Home
last modified time | relevance | path

Searched refs:_const (Results 1 – 4 of 4) sorted by relevance

/linux-5.19.10/crypto/
Dcmac.c58 u64 _const[2]; in crypto_cmac_digest_setkey() local
73 _const[0] = be64_to_cpu(consts[1]); in crypto_cmac_digest_setkey()
74 _const[1] = be64_to_cpu(consts[0]); in crypto_cmac_digest_setkey()
78 msb_mask = ((s64)_const[1] >> 63) & gfmask; in crypto_cmac_digest_setkey()
79 _const[1] = (_const[1] << 1) | (_const[0] >> 63); in crypto_cmac_digest_setkey()
80 _const[0] = (_const[0] << 1) ^ msb_mask; in crypto_cmac_digest_setkey()
82 consts[i + 0] = cpu_to_be64(_const[1]); in crypto_cmac_digest_setkey()
83 consts[i + 1] = cpu_to_be64(_const[0]); in crypto_cmac_digest_setkey()
89 _const[0] = be64_to_cpu(consts[0]); in crypto_cmac_digest_setkey()
93 msb_mask = ((s64)_const[0] >> 63) & gfmask; in crypto_cmac_digest_setkey()
[all …]
/linux-5.19.10/include/math-emu/
Dop-2.h334 static const double _const[] = { \
367 _e240 *= _const[3]; \
368 _j240 *= _const[3]; \
369 _d240 *= _const[2]; \
370 _i240 *= _const[2]; \
371 _c240 *= _const[1]; \
372 _h240 *= _const[1]; \
373 _b240 *= _const[0]; \
374 _g240 *= _const[0]; \
392 _s240.d -= ((_const[10]+_s240.d)-_const[10]); \
[all …]
/linux-5.19.10/drivers/crypto/inside-secure/
Dsafexcel_hash.c2183 u64 _const[2]; in safexcel_cmac_setkey() local
2208 _const[0] = be64_to_cpu(consts[1]); in safexcel_cmac_setkey()
2209 _const[1] = be64_to_cpu(consts[0]); in safexcel_cmac_setkey()
2213 msb_mask = ((s64)_const[1] >> 63) & gfmask; in safexcel_cmac_setkey()
2214 _const[1] = (_const[1] << 1) | (_const[0] >> 63); in safexcel_cmac_setkey()
2215 _const[0] = (_const[0] << 1) ^ msb_mask; in safexcel_cmac_setkey()
2217 consts[i + 0] = cpu_to_be64(_const[1]); in safexcel_cmac_setkey()
2218 consts[i + 1] = cpu_to_be64(_const[0]); in safexcel_cmac_setkey()
/linux-5.19.10/Documentation/sphinx/
Dcdomain.py169 rettype, fullname, arglist, _const = m.groups()