Home
last modified time | relevance | path

Searched refs:copy (Results 1 – 23 of 23) sorted by relevance

/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/set/
A Dder_encode_set.c45 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-3.20.0/lib/libutils/isoc/arch/arm/softfloat/source/8086/
A Ds_propagateNaNF128M.c66 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()
A Ds_propagateNaNExtF80M.c71 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-3.20.0/lib/libutils/isoc/arch/arm/softfloat/source/8086-SSE/
A Ds_propagateNaNExtF80M.c71 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()
A Ds_propagateNaNF128M.c67 if ( isSigNaNA ) goto copy; in softfloat_propagateNaNF128M()
70 copy: in softfloat_propagateNaNF128M()
/optee_os-3.20.0/core/lib/zlib/
A Dinflate.c401 unsigned copy;
431 if (dist > copy) dist = copy;
435 zmemcpy(state->window, end - copy, copy);
765 if (copy > have) copy = have;
920 if (copy > have) copy = have;
921 if (copy > left) copy = left;
1172 copy = state->offset - copy;
1183 if (copy > left) copy = left;
1199 if (copy > state->length) copy = state->length;
1205 if (copy > left) copy = left;
[all …]
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/ecc/
A Dltc_ecc_points.c56 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-3.20.0/ta/
A Dta.mk136 define copy-file
151 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/lib,lib)))
160 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/mk)))
163 define copy-incdir
165 $$(foreach h, $$(sf), $$(eval $$(call copy-file, $1/$$(h), \
169 $(eval $(call copy-incdir,$(d),$(out-dir)/export-$(sm)/include,include)))
173 $(eval $(call copy-incdir, $(d), $(out-dir)/export-$(sm)/host_include)))
175 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/host_include)))
183 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/src)))
188 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/keys)))
[all …]
/optee_os-3.20.0/core/lib/libtomcrypt/
A Ddh.c60 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()
A Drsa.c189 ltc_mp.copy(ltc_tmp_key.d, key->d); in sw_crypto_acipher_gen_rsa_key()
190 ltc_mp.copy(ltc_tmp_key.N, key->n); in sw_crypto_acipher_gen_rsa_key()
191 ltc_mp.copy(ltc_tmp_key.p, key->p); in sw_crypto_acipher_gen_rsa_key()
192 ltc_mp.copy(ltc_tmp_key.q, key->q); in sw_crypto_acipher_gen_rsa_key()
193 ltc_mp.copy(ltc_tmp_key.qP, key->qp); in sw_crypto_acipher_gen_rsa_key()
194 ltc_mp.copy(ltc_tmp_key.dP, key->dp); in sw_crypto_acipher_gen_rsa_key()
195 ltc_mp.copy(ltc_tmp_key.dQ, key->dq); in sw_crypto_acipher_gen_rsa_key()
A Dmpi_desc.c94 static int copy(void *a, void *b) in copy() function
106 return copy(b, *a); in init_copy()
638 .copy = copy,
A Decc.c178 ltc_mp.copy(ltc_tmp_key.k, key->d); in _ltc_ecc_generate_keypair()
179 ltc_mp.copy(ltc_tmp_key.pubkey.x, key->x); in _ltc_ecc_generate_keypair()
180 ltc_mp.copy(ltc_tmp_key.pubkey.y, key->y); in _ltc_ecc_generate_keypair()
/optee_os-3.20.0/lib/libmbedtls/core/
A Dmbed_helpers.h35 #error Do not know how to copy mbedtls_aes_context::rk in mbed_copy_mbedtls_aes_context()
/optee_os-3.20.0/core/lib/libtomcrypt/src/math/
A Dtfm_desc.c62 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 &copy,
A Dgmp_desc.c39 static int copy(void *a, void *b) in copy() function
52 return copy(b, *a); in init_copy()
578 &copy,
A Dltm_desc.c85 static int copy(void *a, void *b) in copy() function
480 &copy,
/optee_os-3.20.0/lib/libmbedtls/mbedtls/
A Ddco.txt9 Everyone is permitted to copy and distribute verbatim copies of this
A DLICENSE96 Derivative Works a copy of this License; and
109 include a readable copy of the attribution notices contained
194 You may obtain a copy of the License at
A DREADME.md22 To generate a local copy of the library documentation in HTML format, tailored to your compile-time…
229 A browsable copy of the PSA Cryptography API documents is available on the [PSA cryptography interf…
A DChangeLog1345 which allows copy-less parsing of DER encoded X.509 CRTs,
1816 deep copy of the session, and the peer certificate is not lost. Fixes #926.
2007 not need to copy the declarations, and ensures that they will have the
/optee_os-3.20.0/core/lib/libtomcrypt/src/headers/
A Dtomcrypt_math.h80 int (*copy)(void *src, void *dst); member
A Dtomcrypt_private.h176 #define mp_copy(a, b) ltc_mp.copy(a, b)
/optee_os-3.20.0/scripts/
A Dmem_usage.py89 env = os.environ.copy()

Completed in 32 milliseconds