| /optee_os/core/lib/libtomcrypt/src/headers/ |
| H A D | tomcrypt_macros.h | 12 #define STORE32L(x, y) \ argument 16 #define LOAD32L(x, y) \ argument 22 #define STORE64L(x, y) \ argument 28 #define LOAD64L(x, y) \ argument 34 #define STORE32H(x, y) \ argument 38 #define LOAD32H(x, y) \ argument 44 #define STORE64H(x, y) \ argument 50 #define LOAD64H(x, y) \ argument 61 #define STORE32H(x, y) \ argument 65 #define LOAD32H(x, y) \ argument [all …]
|
| /optee_os/core/lib/libtomcrypt/src/pk/asn1/der/generalizedtime/ |
| H A D | der_decode_generalizedtime.c | 30 #define DECODE_V(y, max) do {\ argument 36 #define DECODE_V4(y, max) do {\ argument 54 int y; in der_decode_generalizedtime() local
|
| H A D | der_encode_generalizedtime.c | 15 #define STORE_V(y) do {\ argument 20 #define STORE_V4(y) do {\ argument
|
| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | constant_time_impl.h | 271 static inline mbedtls_ct_condition_t mbedtls_ct_uint_lt(mbedtls_ct_uint_t x, mbedtls_ct_uint_t y) in mbedtls_ct_uint_lt() 382 static inline mbedtls_ct_condition_t mbedtls_ct_uint_ne(mbedtls_ct_uint_t x, mbedtls_ct_uint_t y) in mbedtls_ct_uint_ne() 490 mbedtls_ct_uint_t y) in mbedtls_ct_uint_eq() 496 mbedtls_ct_uint_t y) in mbedtls_ct_uint_gt() 502 mbedtls_ct_uint_t y) in mbedtls_ct_uint_ge() 508 mbedtls_ct_uint_t y) in mbedtls_ct_uint_le() 514 mbedtls_ct_condition_t y) in mbedtls_ct_bool_ne() 520 mbedtls_ct_condition_t y) in mbedtls_ct_bool_and() 526 mbedtls_ct_condition_t y) in mbedtls_ct_bool_or()
|
| H A D | md5.c | 103 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) in mbedtls_internal_md5_process() argument 124 #define F(x, y, z) ((y) ^ ((z) & ((x) ^ (y)))) in mbedtls_internal_md5_process() argument 145 #define F(x, y, z) ((x) ^ (y) ^ (z)) in mbedtls_internal_md5_process() argument 166 #define F(x, y, z) ((y) ^ ((x) | ~(z))) in mbedtls_internal_md5_process() argument
|
| H A D | sha1.c | 113 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) in mbedtls_internal_sha1_process() argument 140 #define F(x, y, z) ((x) ^ (y) ^ (z)) in mbedtls_internal_sha1_process() argument 167 #define F(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) in mbedtls_internal_sha1_process() argument 194 #define F(x, y, z) ((x) ^ (y) ^ (z)) in mbedtls_internal_sha1_process() argument
|
| /optee_os/lib/libutils/ext/include/ |
| H A D | util.h | 54 #define ROUNDUP(x, y) \ argument 121 #define ROUNDUP2_DIV(x, y) \ argument 136 #define ROUNDUP_DIV(x, y) (ROUNDUP((x), (y)) / (__typeof__(x))(y)) argument 139 #define ROUNDDOWN(x, y) (((x) / (__typeof__(x))(y)) * (__typeof__(x))(y)) argument 152 #define DIV_ROUND_UP(x, y) (((x) + (y) - 1) / (y)) argument 155 #define UDIV_ROUND_NEAREST(x, y) \ argument 160 #define ROUNDUP(x, y) ((((x) + (y) - 1) / (y)) * (y)) argument 161 #define ROUNDDOWN(x, y) (((x) / (y)) * (y)) argument 162 #define UDIV_ROUND_NEAREST(x, y) (((x) + ((y) / 2)) / (y)) argument 178 #define CONCAT(x, y) _CONCAT(x, y) argument [all …]
|
| /optee_os/core/lib/libtomcrypt/src/pk/asn1/der/utctime/ |
| H A D | der_decode_utctime.c | 29 #define DECODE_V(y, max) \ argument 46 int y; in der_decode_utctime() local
|
| /optee_os/core/lib/libtomcrypt/src/stream/rc4/ |
| H A D | rc4_stream.c | 18 int x, y; in rc4_stream_setup() local 53 unsigned char x, y, *s, tmp; in rc4_stream_crypt() local
|
| /optee_os/core/lib/libtomcrypt/src/hashes/ |
| H A D | sha1.c | 31 #define F0(x,y,z) (z ^ (x & (y ^ z))) argument 32 #define F1(x,y,z) (x ^ y ^ z) argument 33 #define F2(x,y,z) ((x & y) | (z & (x | y))) argument 34 #define F3(x,y,z) (x ^ y ^ z) argument
|
| /optee_os/core/lib/libtomcrypt/src/mac/pmac/ |
| H A D | pmac_shift_xor.c | 18 int x, y; in pmac_shift_xor() local
|
| /optee_os/core/lib/libtomcrypt/src/ciphers/ |
| H A D | xtea.c | 70 ulong32 y, z; in xtea_ecb_encrypt() local 106 ulong32 y, z; in xtea_ecb_decrypt() local
|
| H A D | idea.c | 49 #define STORE16(x,y) { (y)[0] = (unsigned char)(((x)>>8)&255); (y)[1] = (unsigned char)((x)&255); } argument 50 #define LOAD16(x,y) { x = ((ushort16)((y)[0] & 255)<<8) | ((ushort16)((y)[1] & 255)); } argument 54 ushort16 y = x; in s_mul_inv() local
|
| /optee_os/core/lib/libtomcrypt/src/encauth/ocb/ |
| H A D | ocb_shift_xor.c | 19 int x, y; in ocb_shift_xor() local
|
| /optee_os/core/lib/libtomcrypt/src/encauth/gcm/ |
| H A D | gcm_mult_h.c | 28 int y; in gcm_mult_h() local
|
| H A D | gcm_add_aad.c | 25 unsigned long y; in gcm_add_aad() local
|
| H A D | gcm_add_iv.c | 22 unsigned long x, y; in gcm_add_iv() local
|
| /optee_os/core/lib/libtomcrypt/src/pk/asn1/der/short_integer/ |
| H A D | der_length_short_integer.c | 20 unsigned long z, y; in der_length_short_integer() local
|
| H A D | der_decode_short_integer.c | 22 unsigned long len, x, y; in der_decode_short_integer() local
|
| /optee_os/core/lib/libtomcrypt/src/misc/crypt/ |
| H A D | crypt_find_hash_any.c | 17 int x, y, z; in find_hash_any() local
|
| /optee_os/core/lib/libtomcrypt/src/pk/asn1/der/general/ |
| H A D | der_encode_asn1_length.c | 20 unsigned long x, y; in der_encode_asn1_length() local
|
| /optee_os/core/lib/libtomcrypt/src/encauth/ccm/ |
| H A D | ccm_add_aad.c | 17 unsigned long y; in ccm_add_aad() local
|
| H A D | ccm_done.c | 17 unsigned long x, y; in ccm_done() local
|
| /optee_os/core/lib/libtomcrypt/src/encauth/ocb3/ |
| H A D | ocb3_init.c | 14 int x, y, bottom; in s_ocb3_int_calc_offset_zero() local 87 int poly, x, y, m, err; in ocb3_init() local
|
| /optee_os/core/lib/libtomcrypt/src/ciphers/twofish/ |
| H A D | twofish.c | 91 unsigned char a0,b0,a1,b1,a2,b2,a3,b3,a4,b4,y; in s_sbox() local 127 ulong32 y; in sbox() local 226 int x, y; in rs_mult() local 241 unsigned char y[4]; in h_func() local 290 unsigned char g, i, y, z; in s_g_func() local 320 ulong32 y; in g_func() local 346 int k, x, y; in s_twofish_setup() local
|