| /optee_os/core/lib/libtomcrypt/src/pk/asn1/der/set/ |
| H A D | der_encode_set.c | 45 ltc_asn1_list *copy; in der_encode_set() local 50 copy = XCALLOC(inlen, sizeof(*copy)); in der_encode_set() 51 if (copy == NULL) { in der_encode_set() 57 copy[x] = list[x]; in der_encode_set() 58 copy[x].used = x; in der_encode_set() 62 XQSORT(copy, inlen, sizeof(*copy), &s_qsort_helper); in der_encode_set() 65 err = der_encode_sequence_ex(copy, inlen, out, outlen, LTC_ASN1_SET); in der_encode_set() 68 XFREE(copy); in der_encode_set()
|
| /optee_os/lib/libutils/isoc/arch/arm/softfloat/source/8086/ |
| H A D | s_propagateNaNF128M.c | 66 goto copy; in softfloat_propagateNaNF128M() 74 goto copy; in softfloat_propagateNaNF128M() 76 if ( softfloat_isNaNF128M( aWPtr ) ) goto copy; in softfloat_propagateNaNF128M() 86 if ( wordMagB < wordMagA ) goto copy; in softfloat_propagateNaNF128M() 90 if ( wordMagB < wordMagA ) goto copy; in softfloat_propagateNaNF128M() 94 if ( wordMagB < wordMagA ) goto copy; in softfloat_propagateNaNF128M() 98 if ( wordMagB < wordMagA ) goto copy; in softfloat_propagateNaNF128M() 99 if ( uiA96 < uiB96 ) goto copy; in softfloat_propagateNaNF128M() 102 copy: in softfloat_propagateNaNF128M()
|
| H A D | s_propagateNaNExtF80M.c | 71 goto copy; in softfloat_propagateNaNExtF80M() 81 goto copy; in softfloat_propagateNaNExtF80M() 85 if ( isNaNExtF80UI( uiA64, uiA0 ) ) goto copy; in softfloat_propagateNaNExtF80M() 95 if ( uiMagB64 < uiMagA64 ) goto copy; in softfloat_propagateNaNExtF80M() 99 if ( uiB0 < uiA0 ) goto copy; in softfloat_propagateNaNExtF80M() 100 if ( uiA64 < uiB64 ) goto copy; in softfloat_propagateNaNExtF80M() 103 copy: in softfloat_propagateNaNExtF80M()
|
| /optee_os/core/lib/zlib/ |
| H A D | inflate.c | 99 unsigned copy)); 398 local int updatewindow(strm, end, copy) in updatewindow() argument 401 unsigned copy; 424 if (copy >= state->wsize) { 431 if (dist > copy) dist = copy; 432 zmemcpy(state->window + state->wnext, end - copy, dist); 433 copy -= dist; 434 if (copy) { 435 zmemcpy(state->window, end - copy, copy); 436 state->wnext = copy; [all …]
|
| /optee_os/lib/libutils/isoc/arch/arm/softfloat/source/8086-SSE/ |
| H A D | s_propagateNaNExtF80M.c | 71 goto copy; in softfloat_propagateNaNExtF80M() 81 goto copy; in softfloat_propagateNaNExtF80M() 85 if ( isNaNExtF80UI( uiA64, uiA0 ) ) goto copy; in softfloat_propagateNaNExtF80M() 95 if ( uiMagB64 < uiMagA64 ) goto copy; in softfloat_propagateNaNExtF80M() 99 if ( uiB0 < uiA0 ) goto copy; in softfloat_propagateNaNExtF80M() 100 if ( uiA64 < uiB64 ) goto copy; in softfloat_propagateNaNExtF80M() 103 copy: in softfloat_propagateNaNExtF80M()
|
| H A D | s_propagateNaNF128M.c | 67 if ( isSigNaNA ) goto copy; in softfloat_propagateNaNF128M() 70 copy: in softfloat_propagateNaNF128M()
|
| /optee_os/core/lib/libtomcrypt/src/pk/ecc/ |
| H A D | ltc_ecc_points.c | 56 if ((err = ltc_mp.copy(src->x, dst->x)) != CRYPT_OK) return err; in ltc_ecc_copy_point() 57 if ((err = ltc_mp.copy(src->y, dst->y)) != CRYPT_OK) return err; in ltc_ecc_copy_point() 58 if ((err = ltc_mp.copy(src->z, dst->z)) != CRYPT_OK) return err; in ltc_ecc_copy_point()
|
| /optee_os/ta/ |
| H A D | ta.mk | 142 define copy-file 157 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/lib,lib))) 166 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/mk))) 169 define copy-incdir 171 $$(foreach h, $$(sf), $$(eval $$(call copy-file, $1/$$(h), \ 175 $(eval $(call copy-incdir,$(d),$(out-dir)/export-$(sm)/include,include))) 179 $(eval $(call copy-incdir, $(d), $(out-dir)/export-$(sm)/host_include))) 181 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/host_include))) 189 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/src))) 200 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/keys))) [all …]
|
| /optee_os/core/lib/libtomcrypt/ |
| H A D | dh.c | 60 ltc_mp.copy(ltc_tmp_key.y, key->y); in crypto_acipher_gen_dh_key() 61 ltc_mp.copy(ltc_tmp_key.x, key->x); in crypto_acipher_gen_dh_key()
|
| H A D | rsa.c | 197 ltc_mp.copy(ltc_tmp_key.d, key->d); in sw_crypto_acipher_gen_rsa_key() 198 ltc_mp.copy(ltc_tmp_key.N, key->n); in sw_crypto_acipher_gen_rsa_key() 199 ltc_mp.copy(ltc_tmp_key.p, key->p); in sw_crypto_acipher_gen_rsa_key() 200 ltc_mp.copy(ltc_tmp_key.q, key->q); in sw_crypto_acipher_gen_rsa_key() 201 ltc_mp.copy(ltc_tmp_key.qP, key->qp); in sw_crypto_acipher_gen_rsa_key() 202 ltc_mp.copy(ltc_tmp_key.dP, key->dp); in sw_crypto_acipher_gen_rsa_key() 203 ltc_mp.copy(ltc_tmp_key.dQ, key->dq); in sw_crypto_acipher_gen_rsa_key()
|
| H A D | mpi_desc.c | 94 static int copy(void *a, void *b) in copy() function 106 return copy(b, *a); in init_copy() 637 .copy = copy,
|
| H A D | ecc.c | 173 ltc_mp.copy(ltc_tmp_key.k, key->d); in _ltc_ecc_generate_keypair() 174 ltc_mp.copy(ltc_tmp_key.pubkey.x, key->x); in _ltc_ecc_generate_keypair() 175 ltc_mp.copy(ltc_tmp_key.pubkey.y, key->y); in _ltc_ecc_generate_keypair()
|
| /optee_os/core/lib/libtomcrypt/src/math/ |
| H A D | tfm_desc.c | 62 static int copy(void *a, void *b) in copy() function 75 return copy(b, *a); in init_copy() 601 ltc_mp.copy(Q->x, R->x); in tfm_ecc_projective_add_point() 602 ltc_mp.copy(Q->y, R->y); in tfm_ecc_projective_add_point() 603 ltc_mp.copy(Q->z, R->z); in tfm_ecc_projective_add_point() 610 ltc_mp.copy(P->x, R->x); in tfm_ecc_projective_add_point() 611 ltc_mp.copy(P->y, R->y); in tfm_ecc_projective_add_point() 612 ltc_mp.copy(P->z, R->z); in tfm_ecc_projective_add_point() 772 ©,
|
| H A D | gmp_desc.c | 39 static int copy(void *a, void *b) in copy() function 52 return copy(b, *a); in init_copy() 578 ©,
|
| H A D | ltm_desc.c | 85 static int copy(void *a, void *b) in copy() function 480 ©,
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | LICENSE | 103 Derivative Works a copy of this License; and 116 include a readable copy of the attribution notices contained 201 You may obtain a copy of the License at 220 Everyone is permitted to copy and distribute verbatim copies 254 (2) offer you this license which gives you legal permission to copy, 293 1. You may copy and distribute verbatim copies of the Program's 295 conspicuously and appropriately publish on each copy an appropriate 298 and give any other recipients of the Program a copy of this License 301 You may charge a fee for the physical act of transferring a copy, and 304 2. You may modify your copy or copies of the Program or any portion [all …]
|
| H A D | dco.txt | 9 Everyone is permitted to copy and distribute verbatim copies of this
|
| H A D | README.md | 24 To generate a local copy of the library documentation in HTML format, tailored to your compile-time…
|
| H A D | ChangeLog | 182 occurred whenever SSL debugging was enabled on a copy of Mbed TLS built 2134 * The new function mbedtls_dhm_get_value() copy a field out of a 3234 which allows copy-less parsing of DER encoded X.509 CRTs, 3705 deep copy of the session, and the peer certificate is not lost. Fixes #926. 3896 not need to copy the declarations, and ensures that they will have the
|
| /optee_os/lib/libutils/compiler-rt/ |
| H A D | LICENSE.TXT | 99 Derivative Works a copy of this License; and 112 include a readable copy of the attribution notices contained 197 You may obtain a copy of the License at 264 Permission is hereby granted, free of charge, to any person obtaining a copy of 267 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 295 Permission is hereby granted, free of charge, to any person obtaining a copy 298 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| /optee_os/core/lib/libtomcrypt/src/headers/ |
| H A D | tomcrypt_math.h | 80 int (*copy)(void *src, void *dst); member
|
| H A D | tomcrypt_private.h | 201 #define mp_copy(a, b) ltc_mp.copy(a, b)
|
| /optee_os/scripts/ |
| H A D | mem_usage.py | 89 env = os.environ.copy()
|
| /optee_os/core/lib/qcbor/ |
| H A D | README.md | 429 copy of the code is in memory no matter how many applications use it.
|