Home
last modified time | relevance | path

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

1234567

/optee_os/core/lib/libtomcrypt/src/headers/
A Dtomcrypt_macros.h80 #define LOAD32H(x, y) \ argument
144 #define STORE32L(x, y) \ argument
147 #define LOAD32L(x, y) \ argument
164 #define STORE32L(x, y) \ argument
167 #define LOAD32L(x, y) \ argument
170 #define STORE64L(x, y) \ argument
173 #define LOAD64L(x, y) \ argument
403 #define ROL64(x, y) \ argument
407 #define ROR64(x, y) \ argument
411 #define ROL64c(x, y) \ argument
[all …]
/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/generalizedtime/
A Dder_decode_generalizedtime.c37 #define DECODE_V(y, max) do {\ argument
43 #define DECODE_V4(y, max) do {\ argument
61 int y; in der_decode_generalizedtime() local
A Dder_encode_generalizedtime.c22 #define STORE_V(y) do {\ argument
27 #define STORE_V4(y) do {\ argument
/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/utctime/
A Dder_decode_utctime.c36 #define DECODE_V(y, max) \ argument
53 int y; in der_decode_utctime() local
/optee_os/out/arm/export-ta_arm32/host_include/
A Dutil.h68 #define ROUNDUP_DIV(x, y) (__extension__({ \ argument
82 #define DIV_ROUND_UP(x, y) (((x) + (y) - 1) / (y)) argument
85 #define UDIV_ROUND_NEAREST(x, y) \ argument
90 #define ROUNDUP(x, y) ((((x) + (y) - 1) / (y)) * (y)) argument
91 #define ROUNDDOWN(x, y) (((x) / (y)) * (y)) argument
92 #define UDIV_ROUND_NEAREST(x, y) (((x) + ((y) / 2)) / (y)) argument
108 #define CONCAT(x, y) _CONCAT(x, y) argument
109 #define _CONCAT(x, y) x##y argument
/optee_os/out/arm/export-ta_arm64/include/
A Dutil.h68 #define ROUNDUP_DIV(x, y) (__extension__({ \ argument
82 #define DIV_ROUND_UP(x, y) (((x) + (y) - 1) / (y)) argument
85 #define UDIV_ROUND_NEAREST(x, y) \ argument
90 #define ROUNDUP(x, y) ((((x) + (y) - 1) / (y)) * (y)) argument
91 #define ROUNDDOWN(x, y) (((x) / (y)) * (y)) argument
92 #define UDIV_ROUND_NEAREST(x, y) (((x) + ((y) / 2)) / (y)) argument
108 #define CONCAT(x, y) _CONCAT(x, y) argument
109 #define _CONCAT(x, y) x##y argument
/optee_os/out/arm/export-ta_arm64/host_include/
A Dutil.h68 #define ROUNDUP_DIV(x, y) (__extension__({ \ argument
82 #define DIV_ROUND_UP(x, y) (((x) + (y) - 1) / (y)) argument
85 #define UDIV_ROUND_NEAREST(x, y) \ argument
90 #define ROUNDUP(x, y) ((((x) + (y) - 1) / (y)) * (y)) argument
91 #define ROUNDDOWN(x, y) (((x) / (y)) * (y)) argument
92 #define UDIV_ROUND_NEAREST(x, y) (((x) + ((y) / 2)) / (y)) argument
108 #define CONCAT(x, y) _CONCAT(x, y) argument
109 #define _CONCAT(x, y) x##y argument
/optee_os/lib/libutils/ext/include/
A Dutil.h68 #define ROUNDUP_DIV(x, y) (__extension__({ \ argument
82 #define DIV_ROUND_UP(x, y) (((x) + (y) - 1) / (y)) argument
85 #define UDIV_ROUND_NEAREST(x, y) \ argument
90 #define ROUNDUP(x, y) ((((x) + (y) - 1) / (y)) * (y)) argument
91 #define ROUNDDOWN(x, y) (((x) / (y)) * (y)) argument
92 #define UDIV_ROUND_NEAREST(x, y) (((x) + ((y) / 2)) / (y)) argument
108 #define CONCAT(x, y) _CONCAT(x, y) argument
109 #define _CONCAT(x, y) x##y argument
/optee_os/out/arm/export-ta_arm32/include/
A Dutil.h68 #define ROUNDUP_DIV(x, y) (__extension__({ \ argument
82 #define DIV_ROUND_UP(x, y) (((x) + (y) - 1) / (y)) argument
85 #define UDIV_ROUND_NEAREST(x, y) \ argument
90 #define ROUNDUP(x, y) ((((x) + (y) - 1) / (y)) * (y)) argument
91 #define ROUNDDOWN(x, y) (((x) / (y)) * (y)) argument
92 #define UDIV_ROUND_NEAREST(x, y) (((x) + ((y) / 2)) / (y)) argument
108 #define CONCAT(x, y) _CONCAT(x, y) argument
109 #define _CONCAT(x, y) x##y argument
/optee_os/core/lib/libtomcrypt/src/mac/pmac/
A Dpmac_shift_xor.c25 int x, y; in pmac_shift_xor() local
/optee_os/core/lib/libtomcrypt/src/stream/rc4/
A Drc4_stream.c25 int x, y; in rc4_stream_setup() local
60 unsigned char x, y, *s, tmp; in rc4_stream_crypt() local
/optee_os/core/lib/libtomcrypt/src/encauth/ocb/
A Docb_shift_xor.c26 int x, y; in ocb_shift_xor() local
/optee_os/core/lib/libtomcrypt/src/hashes/
A Dsha1.c38 #define F0(x,y,z) (z ^ (x & (y ^ z))) argument
39 #define F1(x,y,z) (x ^ y ^ z) argument
40 #define F2(x,y,z) ((x & y) | (z & (x | y))) argument
41 #define F3(x,y,z) (x ^ y ^ z) argument
/optee_os/core/lib/libtomcrypt/src/misc/crypt/
A Dcrypt_find_hash_any.c24 int x, y, z; in find_hash_any() local
/optee_os/core/lib/libtomcrypt/src/encauth/ccm/
A Dccm_add_aad.c24 unsigned long y; in ccm_add_aad() local
A Dccm_done.c24 unsigned long x, y; in ccm_done() local
A Dccm_add_nonce.c24 unsigned long x, y, len; in ccm_add_nonce() local
/optee_os/core/lib/libtomcrypt/src/encauth/gcm/
A Dgcm_mult_h.c35 int y; in gcm_mult_h() local
A Dgcm_add_aad.c32 unsigned long y; in gcm_add_aad() local
A Dgcm_add_iv.c29 unsigned long x, y; in gcm_add_iv() local
/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/general/
A Dder_encode_asn1_length.c27 unsigned long x, y; in der_encode_asn1_length() local
/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/short_integer/
A Dder_length_short_integer.c27 unsigned long z, y; in der_length_short_integer() local
A Dder_decode_short_integer.c29 unsigned long len, x, y; in der_decode_short_integer() local
/optee_os/core/lib/libtomcrypt/src/ciphers/
A Dxtea.c77 ulong32 y, z; in xtea_ecb_encrypt() local
113 ulong32 y, z; in xtea_ecb_decrypt() local
/optee_os/core/lib/libtomcrypt/src/modes/lrw/
A Dlrw_setiv.c31 int x, y; in lrw_setiv() local

Completed in 18 milliseconds

1234567