Searched defs:Maj (Results 1 – 14 of 14) sorted by relevance
/freebsd/contrib/wpa/src/crypto/ |
H A D | sha512-internal.c | 93 #define Maj(x,y,z) (((x | y) & z) | (x & y)) macro
|
H A D | sha256-internal.c | 72 #define Maj(x,y,z) (((x | y) & z) | (x & y)) macro
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_hash/sha256/cp/ |
H A D | hash_sha256_cp.c | 75 #define Maj(x, y, z) ((x & (y | z)) | (y & z)) macro
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_hash/sha512/cp/ |
H A D | hash_sha512_cp.c | 91 #define Maj(x, y, z) ((x & (y | z)) | (y & z)) macro
|
/freebsd/sys/crypto/sha2/ |
H A D | sha256c.c | 108 #define Maj(x, y, z) ((x & (y | z)) | (y & z)) macro
|
H A D | sha512c.c | 137 #define Maj(x, y, z) ((x & (y | z)) | (y & z)) macro
|
/freebsd/sys/cddl/boot/zfs/ |
H A D | sha256.c | 48 #define Maj(x, y, z) (((x) & (y)) ^ ((z) & ((x) ^ (y)))) macro
|
/freebsd/crypto/openssl/crypto/sha/ |
H A D | sha256.c | 143 # define Maj(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) macro
|
H A D | sha512.c | 480 # define Maj(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) macro
|
/freebsd/contrib/unbound/compat/ |
H A D | sha512.c | 191 #define Maj(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) macro
|
/freebsd/sys/contrib/openzfs/module/icp/algs/sha2/ |
H A D | sha2_generic.c | 62 #define Maj(x, y, z) (((y) & (z)) | (((y) | (z)) & (x))) macro
|
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/ |
H A D | OSTargets.h | 324 const unsigned Maj = this->PlatformMinVersion.getMajor(); in getOSDefines() local
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | sha2.c | 170 #define Maj(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) macro
|
/freebsd/contrib/ldns/ |
H A D | sha2.c | 199 #define Maj(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) macro
|