/optee_test-3.20.0/ta/os_test/include/ |
A D | tb_asserts.h | 41 #define TB_ASSERT_EQ_SHORT(src, short) \ argument 43 if (((short) == 0) && (__mpanum_size((mpanum)src) != 0)) { \ 48 } else if (__mpanum_size((mpanum)src) > 1) { \ 54 (int)(__mpanum_lsw((mpanum)src)*__mpanum_sign((mpanum)src)) != \ 59 (int)(__mpanum_lsw((mpanum)src) \ 60 *__mpanum_sign((mpanum)src))); \
|
A D | testframework.h | 24 size_t my_strlcpy(char *dst, const char *src, size_t siz); 43 int TEE_BigIntConvertFromString(TEE_BigInt *dest, const char *src); 44 char *TEE_BigIntConvertToString(char *dest, int mode, const TEE_BigInt *src);
|
/optee_test-3.20.0/ |
A D | Android.mk | 39 srcs += adbg/src/adbg_case.c \ 40 adbg/src/adbg_enum.c \ 41 adbg/src/adbg_expect.c \ 42 adbg/src/adbg_log.c \ 43 adbg/src/adbg_run.c \ 44 adbg/src/security_utils_hex.c \
|
/optee_test-3.20.0/host/xtest/ |
A D | CMakeLists.txt | 44 adbg/src/adbg_case.c 45 adbg/src/adbg_enum.c 46 adbg/src/adbg_expect.c 47 adbg/src/adbg_log.c 48 adbg/src/adbg_run.c 49 adbg/src/security_utils_hex.c
|
A D | Makefile | 66 srcs += adbg/src/adbg_case.c \ 67 adbg/src/adbg_enum.c \ 68 adbg/src/adbg_expect.c \ 69 adbg/src/adbg_log.c \ 70 adbg/src/adbg_run.c \ 71 adbg/src/security_utils_hex.c \
|
A D | sock_server.c | 237 void *src = NULL; in sock_server_add_fd() local 256 src = &sain->sin_addr; in sock_server_add_fd() 260 src = &sain6->sin6_addr; in sock_server_add_fd() 266 if (!inet_ntop(sa->sa_family, src, serv.host, sizeof(serv.host))) in sock_server_add_fd()
|
A D | regression_4000.c | 352 op.params[1].tmpref.buffer = (void *)src; in ta_crypt_cmd_cipher_update() 378 const void *src, in ta_crypt_cmd_cipher_do_final() argument 390 op.params[1].tmpref.buffer = (void *)src; in ta_crypt_cmd_cipher_do_final() 506 const void *src, in ta_crypt_cmd_ae_update() argument 544 const void *src, in ta_crypt_cmd_ae_encrypt_final() argument 589 const void *src, size_t src_len, in ta_crypt_cmd_ae_decrypt_final() argument 634 const void *src, in ta_crypt_cmd_asymmetric_operate() argument 685 const void *src, in ta_crypt_cmd_asymmetric_encrypt() argument 693 src, src_len, dst, dst_len); in ta_crypt_cmd_asymmetric_encrypt() 701 const void *src, in ta_crypt_cmd_asymmetric_decrypt() argument [all …]
|
/optee_test-3.20.0/host/openssl/include/openssl/ |
A D | buffer.h | 100 size_t BUF_strlcpy(char *dst, const char *src, size_t siz); 101 size_t BUF_strlcat(char *dst, const char *src, size_t siz);
|
A D | ec.h | 205 int EC_GROUP_copy(EC_GROUP *dst, const EC_GROUP *src); 212 EC_GROUP *EC_GROUP_dup(const EC_GROUP *src); 441 int EC_POINT_copy(EC_POINT *dst, const EC_POINT *src); 449 EC_POINT *EC_POINT_dup(const EC_POINT *src, const EC_GROUP *group); 779 EC_KEY *EC_KEY_copy(EC_KEY *dst, const EC_KEY *src); 785 EC_KEY *EC_KEY_dup(const EC_KEY *src);
|
A D | tls1.h | 385 # define SSL_set_tlsext_opaque_prf_input(s, src, len) \ argument 386 SSL_ctrl(s,SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT, len, src)
|
A D | evp.h | 1081 const EVP_PKEY_ASN1_METHOD *src); 1208 void EVP_PKEY_meth_copy(EVP_PKEY_METHOD *dst, const EVP_PKEY_METHOD *src); 1279 EVP_PKEY_CTX *src)); 1371 EVP_PKEY_CTX *src));
|
A D | crypto.h | 459 void CRYPTO_THREADID_cpy(CRYPTO_THREADID *dest, const CRYPTO_THREADID *src);
|
/optee_test-3.20.0/host/xtest/gp/include/ |
A D | xml_timearithm_api.h | 706 uint32_t src) in Invoke_BigIntConvertToS32() argument 708 return Invoke_Simple_Function_v1(c, sess, cmd_id, src, dst); in Invoke_BigIntConvertToS32() 712 uint32_t cmd, uint32_t src, in Invoke_BigIntGetBit() argument 719 op.params[0].value.a = src; in Invoke_BigIntGetBit() 735 uint32_t cmd, uint32_t src, in Invoke_BigIntGetBitCount() argument 742 op.params[0].value.a = src; in Invoke_BigIntGetBitCount() 780 uint32_t src, uint32_t mod, in Invoke_BigIntConvertToFMM() argument 784 src, 0); in Invoke_BigIntConvertToFMM() 790 uint32_t src, uint32_t mod, in Invoke_BigIntConvertFromFMM() argument 794 src, 0); in Invoke_BigIntConvertFromFMM()
|
/optee_test-3.20.0/ta/crypt/ |
A D | arith_taf.c | 516 TEE_BigInt *src = lookup_handle(HT_BIGINT, params[0].value.a); in ta_entry_arith_to_fmm() local 521 if (!src || !n | !ctx || !dest) in ta_entry_arith_to_fmm() 524 TEE_BigIntConvertToFMM(dest, src, n, ctx); in ta_entry_arith_to_fmm() 534 TEE_BigIntFMM *src = lookup_handle(HT_FMMVAR, params[0].value.a); in ta_entry_arith_from_fmm() local 539 if (!src || !n | !ctx || !dest) in ta_entry_arith_from_fmm() 542 TEE_BigIntConvertFromFMM(dest, src, n, ctx); in ta_entry_arith_from_fmm()
|
A D | cryp_taf.c | 199 TEE_OperationHandle src = op_handle_lookup(params[0].value.b); in ta_entry_copy_operation() local 206 TEE_CopyOperation(dst, src); in ta_entry_copy_operation() 492 TEE_ObjectHandle src = obj_handle_lookup(params[0].value.b); in ta_entry_copy_object_attributes() local 498 return TEE_CopyObjectAttributes1(dst, src); in ta_entry_copy_object_attributes()
|