Home
last modified time | relevance | path

Searched defs:d (Results 1 – 25 of 84) sorted by relevance

1234

/optee_os/core/tee/
A Duuid.c10 void tee_uuid_to_octets(uint8_t *d, const TEE_UUID *s) in tee_uuid_to_octets()
23 void tee_uuid_from_octets(TEE_UUID *d, const uint8_t *s) in tee_uuid_from_octets()
/optee_os/core/lib/libtomcrypt/src/ciphers/
A Dnoekeon.c40 #define kTHETA(a, b, c, d) \ argument
46 #define THETA(k, a, b, c, d) \ argument
52 #define GAMMA(a, b, c, d) \ argument
60 #define PI1(a, b, c, d) \ argument
63 #define PI2(a, b, c, d) \ argument
117 ulong32 a,b,c,d,temp; in _noekeon_ecb_encrypt() local
171 ulong32 a,b,c,d, temp; in _noekeon_ecb_decrypt() local
A Drc6.c127 ulong32 a,b,c,d,t,u; in _rc6_ecb_encrypt() local
139 #define RND(a,b,c,d) \ in _rc6_ecb_encrypt() argument
182 ulong32 a,b,c,d,t,u; in _rc6_ecb_decrypt() local
194 #define RND(a,b,c,d) \ in _rc6_ecb_decrypt() argument
A Dserpent.c37 #define _LT(i,a,b,c,d,e) { \ argument
47 #define _ILT(i,a,b,c,d,e) { \ argument
432 #define _KX(r, a, b, c, d, e) { \ argument
439 #define _LK(r, a, b, c, d, e) { \ argument
446 #define _SK(r, a, b, c, d, e) { \ argument
458 ulong32 a, b, c, d, e; in _setup_key() local
494 ulong32 a, b, c, d, e; in _enc_block() local
536 ulong32 a, b, c, d, e; in _dec_block() local
/optee_os/core/lib/libtomcrypt/src/hashes/
A Dmd5.c45 #define FF(a,b,c,d,M,s,t) \ argument
48 #define GG(a,b,c,d,M,s,t) \ argument
51 #define HH(a,b,c,d,M,s,t) \ argument
54 #define II(a,b,c,d,M,s,t) \ argument
84 #define FF(a,b,c,d,M,s,t) \ argument
87 #define GG(a,b,c,d,M,s,t) \ argument
90 #define HH(a,b,c,d,M,s,t) \ argument
93 #define II(a,b,c,d,M,s,t) \ argument
105 ulong32 i, W[16], a, b, c, d; in _md5_compress() local
A Drmd128.c50 #define FF(a, b, c, d, x, s) \ argument
54 #define GG(a, b, c, d, x, s) \ argument
58 #define HH(a, b, c, d, x, s) \ argument
62 #define II(a, b, c, d, x, s) \ argument
66 #define FFF(a, b, c, d, x, s) \ argument
70 #define GGG(a, b, c, d, x, s) \ argument
74 #define HHH(a, b, c, d, x, s) \ argument
78 #define III(a, b, c, d, x, s) \ argument
A Drmd256.c44 #define FF(a, b, c, d, x, s) \ argument
48 #define GG(a, b, c, d, x, s) \ argument
52 #define HH(a, b, c, d, x, s) \ argument
56 #define II(a, b, c, d, x, s) \ argument
60 #define FFF(a, b, c, d, x, s) \ argument
64 #define GGG(a, b, c, d, x, s) \ argument
68 #define HHH(a, b, c, d, x, s) \ argument
72 #define III(a, b, c, d, x, s) \ argument
A Drmd160.c51 #define FF(a, b, c, d, e, x, s) \ argument
56 #define GG(a, b, c, d, e, x, s) \ argument
61 #define HH(a, b, c, d, e, x, s) \ argument
66 #define II(a, b, c, d, e, x, s) \ argument
71 #define JJ(a, b, c, d, e, x, s) \ argument
76 #define FFF(a, b, c, d, e, x, s) \ argument
81 #define GGG(a, b, c, d, e, x, s) \ argument
86 #define HHH(a, b, c, d, e, x, s) \ argument
91 #define III(a, b, c, d, e, x, s) \ argument
96 #define JJJ(a, b, c, d, e, x, s) \ argument
A Drmd320.c46 #define FF(a, b, c, d, e, x, s) \ argument
51 #define GG(a, b, c, d, e, x, s) \ argument
56 #define HH(a, b, c, d, e, x, s) \ argument
61 #define II(a, b, c, d, e, x, s) \ argument
66 #define JJ(a, b, c, d, e, x, s) \ argument
71 #define FFF(a, b, c, d, e, x, s) \ argument
76 #define GGG(a, b, c, d, e, x, s) \ argument
81 #define HHH(a, b, c, d, e, x, s) \ argument
86 #define III(a, b, c, d, e, x, s) \ argument
91 #define JJJ(a, b, c, d, e, x, s) \ argument
A Dsha1.c49 ulong32 a,b,c,d,e,W[80],i; in _sha1_compress() local
73 … #define FF0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30); in _sha1_compress() argument
74 … #define FF1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30); in _sha1_compress() argument
75 … #define FF2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30); in _sha1_compress() argument
76 … #define FF3(a,b,c,d,e,i) e = (ROLc(a, 5) + F3(b,c,d) + e + W[i] + 0xca62c1d6UL); b = ROLc(b, 30); in _sha1_compress() argument
A Dmd4.c61 #define FF(a, b, c, d, x, s) { \ argument
65 #define GG(a, b, c, d, x, s) { \ argument
69 #define HH(a, b, c, d, x, s) { \ argument
80 ulong32 x[16], a, b, c, d; in _md4_compress() local
/optee_os/core/crypto/
A Daes-gcm-sw.c77 void *d = dst + n * TEE_AES_BLOCK_SIZE; in encrypt_pl() local
84 void *d = dst + n * TEE_AES_BLOCK_SIZE; in encrypt_pl() local
116 void *d = dst + n * TEE_AES_BLOCK_SIZE; in decrypt_pl() local
123 void *d = dst + n * TEE_AES_BLOCK_SIZE; in decrypt_pl() local
/optee_os/core/lib/libtomcrypt/src/misc/crypt/
A Dcrypt_argchk.c18 void crypt_argchk(const char *v, const char *s, int d) in crypt_argchk()
/optee_os/lib/libutils/ext/
A Dstrlcpy.c48 register char *d = dst; in strlcpy() local
A Dstrlcat.c52 register char *d = dst; in strlcat() local
/optee_os/lib/libutils/isoc/newlib/
A Dmemset.c83 unsigned int d = c & 0xff; /* To avoid sign extension, copy C to an variable
/optee_os/out/arm/export-ta_arm32/host_include/mbedtls/
A Dbn_mul.h54 #define MBEDTLS_BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
63 #define MBEDTLS_BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
69 #define MBEDTLS_BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
79 #define MBEDTLS_BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
A Decdh.h87 mbedtls_mpi d; /*!< The private key. */ member
108 mbedtls_mpi d; /*!< The private key. */ member
/optee_os/out/arm/export-ta_arm64/include/mbedtls/
A Dbn_mul.h54 #define MBEDTLS_BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
63 #define MBEDTLS_BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
69 #define MBEDTLS_BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
79 #define MBEDTLS_BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
A Decdh.h87 mbedtls_mpi d; /*!< The private key. */ member
108 mbedtls_mpi d; /*!< The private key. */ member
/optee_os/out/arm/export-ta_arm32/include/mbedtls/
A Dbn_mul.h54 #define MBEDTLS_BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
63 #define MBEDTLS_BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
69 #define MBEDTLS_BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
79 #define MBEDTLS_BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
/optee_os/out/arm/export-ta_arm64/host_include/mbedtls/
A Dbn_mul.h54 #define MBEDTLS_BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
63 #define MBEDTLS_BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
69 #define MBEDTLS_BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
79 #define MBEDTLS_BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/
A Dbn_mul.h54 #define MBEDTLS_BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
63 #define MBEDTLS_BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
69 #define MBEDTLS_BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
79 #define MBEDTLS_BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
/optee_os/core/lib/libtomcrypt/src/misc/base32/
A Dbase32_encode.c74 unsigned d = (i+3 < inlen) ? in[3] : 0; in base32_encode() local
/optee_os/core/lib/libtomcrypt/src/pk/ec25519/
A Dtweetnacl.c38 u32 d = 0; in vn() local
103 u8 c[32],d[32]; in neq25519() local
111 u8 d[32]; in par25519() local
179 gf a,b,c,d,e,f; in tweetnacl_crypto_scalarmult() local
247 gf a,b,c,d,t,e,f,g,h; in add() local
315 u8 d[64]; in tweetnacl_crypto_sk_to_pk() local
388 u8 d[64],h[64],r[64]; in tweetnacl_crypto_sign() local

Completed in 30 milliseconds

1234