Home
last modified time | relevance | path

Searched defs:y (Results 1 – 25 of 141) sorted by relevance

123456

/optee_os/core/lib/libtomcrypt/src/headers/
H A Dtomcrypt_macros.h12 #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 Dder_decode_generalizedtime.c30 #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 Dder_encode_generalizedtime.c15 #define STORE_V(y) do {\ argument
20 #define STORE_V4(y) do {\ argument
/optee_os/lib/libmbedtls/mbedtls/library/
H A Dconstant_time_impl.h271 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 Dmd5.c103 #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 Dsha1.c113 #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 Dutil.h54 #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 Dder_decode_utctime.c29 #define DECODE_V(y, max) \ argument
46 int y; in der_decode_utctime() local
/optee_os/core/lib/libtomcrypt/src/stream/rc4/
H A Drc4_stream.c18 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 Dsha1.c31 #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 Dpmac_shift_xor.c18 int x, y; in pmac_shift_xor() local
/optee_os/core/lib/libtomcrypt/src/ciphers/
H A Dxtea.c70 ulong32 y, z; in xtea_ecb_encrypt() local
106 ulong32 y, z; in xtea_ecb_decrypt() local
H A Didea.c49 #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 Docb_shift_xor.c19 int x, y; in ocb_shift_xor() local
/optee_os/core/lib/libtomcrypt/src/encauth/gcm/
H A Dgcm_mult_h.c28 int y; in gcm_mult_h() local
H A Dgcm_add_aad.c25 unsigned long y; in gcm_add_aad() local
H A Dgcm_add_iv.c22 unsigned long x, y; in gcm_add_iv() local
/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/short_integer/
H A Dder_length_short_integer.c20 unsigned long z, y; in der_length_short_integer() local
H A Dder_decode_short_integer.c22 unsigned long len, x, y; in der_decode_short_integer() local
/optee_os/core/lib/libtomcrypt/src/misc/crypt/
H A Dcrypt_find_hash_any.c17 int x, y, z; in find_hash_any() local
/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/general/
H A Dder_encode_asn1_length.c20 unsigned long x, y; in der_encode_asn1_length() local
/optee_os/core/lib/libtomcrypt/src/encauth/ccm/
H A Dccm_add_aad.c17 unsigned long y; in ccm_add_aad() local
H A Dccm_done.c17 unsigned long x, y; in ccm_done() local
/optee_os/core/lib/libtomcrypt/src/encauth/ocb3/
H A Docb3_init.c14 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 Dtwofish.c91 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

123456