Home
last modified time | relevance | path

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

12

/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/set/
A Dder_encode_set.c52 ltc_asn1_list *copy; in der_encode_set() local
57 copy = XCALLOC(inlen, sizeof(*copy)); in der_encode_set()
58 if (copy == NULL) { in der_encode_set()
64 copy[x] = list[x]; in der_encode_set()
65 copy[x].used = x; in der_encode_set()
69 XQSORT(copy, inlen, sizeof(*copy), &_qsort_helper); in der_encode_set()
72 err = der_encode_sequence_ex(copy, inlen, out, outlen, LTC_ASN1_SET); in der_encode_set()
75 XFREE(copy); in der_encode_set()
/optee_os/core/lib/zlib/
A Dinflate.c400 unsigned copy;
430 if (dist > copy) dist = copy;
434 zmemcpy(state->window, end - copy, copy);
760 if (copy > have) copy = have;
912 if (copy > have) copy = have;
913 if (copy > left) copy = left;
1162 copy = state->offset - copy;
1173 if (copy > left) copy = left;
1189 if (copy > state->length) copy = state->length;
1195 if (copy > left) copy = left;
[all …]
/optee_os/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/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/ta/
A Dta.mk125 define copy-file
140 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/lib,lib)))
149 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/mk)))
152 define copy-incdir
154 $$(foreach h, $$(sf), $$(eval $$(call copy-file, $1/$$(h), \
158 $(eval $(call copy-incdir,$(d),$(out-dir)/export-$(sm)/include,include)))
162 $(eval $(call copy-incdir, $(d), $(out-dir)/export-$(sm)/host_include)))
164 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/host_include)))
172 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/src)))
177 $(eval $(call copy-file, $(f), $(out-dir)/export-$(sm)/keys)))
[all …]
/optee_os/core/lib/libtomcrypt/src/pk/ecc/
A Dltc_ecc_points.c63 if ((err = ltc_mp.copy(src->x, dst->x)) != CRYPT_OK) return err; in ltc_ecc_copy_point()
64 if ((err = ltc_mp.copy(src->y, dst->y)) != CRYPT_OK) return err; in ltc_ecc_copy_point()
65 if ((err = ltc_mp.copy(src->z, dst->z)) != CRYPT_OK) return err; in ltc_ecc_copy_point()
/optee_os/core/lib/libtomcrypt/
A Drsa.c164 ltc_mp.copy(ltc_tmp_key.d, key->d); in crypto_acipher_gen_rsa_key()
165 ltc_mp.copy(ltc_tmp_key.N, key->n); in crypto_acipher_gen_rsa_key()
166 ltc_mp.copy(ltc_tmp_key.p, key->p); in crypto_acipher_gen_rsa_key()
167 ltc_mp.copy(ltc_tmp_key.q, key->q); in crypto_acipher_gen_rsa_key()
168 ltc_mp.copy(ltc_tmp_key.qP, key->qp); in crypto_acipher_gen_rsa_key()
169 ltc_mp.copy(ltc_tmp_key.dP, key->dp); in crypto_acipher_gen_rsa_key()
170 ltc_mp.copy(ltc_tmp_key.dQ, key->dq); in crypto_acipher_gen_rsa_key()
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 Decc.c155 ltc_mp.copy(ltc_tmp_key.k, key->d); in _ltc_ecc_generate_keypair()
156 ltc_mp.copy(ltc_tmp_key.pubkey.x, key->x); in _ltc_ecc_generate_keypair()
157 ltc_mp.copy(ltc_tmp_key.pubkey.y, key->y); in _ltc_ecc_generate_keypair()
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,
/optee_os/core/lib/libtomcrypt/src/math/
A Dtfm_desc.c69 static int copy(void *a, void *b) in copy() function
82 return copy(b, *a); in init_copy()
608 ltc_mp.copy(Q->x, R->x); in tfm_ecc_projective_add_point()
609 ltc_mp.copy(Q->y, R->y); in tfm_ecc_projective_add_point()
610 ltc_mp.copy(Q->z, R->z); in tfm_ecc_projective_add_point()
617 ltc_mp.copy(P->x, R->x); in tfm_ecc_projective_add_point()
618 ltc_mp.copy(P->y, R->y); in tfm_ecc_projective_add_point()
619 ltc_mp.copy(P->z, R->z); in tfm_ecc_projective_add_point()
779 &copy,
A Dltm_desc.c74 static int copy(void *a, void *b) in copy() function
86 return copy(b, *a); in init_copy()
451 &copy,
A Dgmp_desc.c46 static int copy(void *a, void *b) in copy() function
59 return copy(b, *a); in init_copy()
585 &copy,
/optee_os/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/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…
221 A browsable copy of the PSA Cryptography API documents is available on the [PSA cryptography interf…
A DChangeLog1130 which allows copy-less parsing of DER encoded X.509 CRTs,
1601 deep copy of the session, and the peer certificate is not lost. Fixes #926.
1792 not need to copy the declarations, and ensures that they will have the
/optee_os/core/lib/libtomcrypt/src/headers/
A Dtomcrypt_math.h87 int (*copy)(void *src, void *dst); member
A Dtomcrypt_private.h163 #define mp_copy(a, b) ltc_mp.copy(a, b)
/optee_os/scripts/
A Dmem_usage.py89 env = os.environ.copy()
/optee_os/out/arm/core/
A Dtee.symb_sizes1441 000000000e1355fc 000000000000002c t copy
A Dtee.dmp182 000000000e1355fc l F .text 000000000000002c copy
81863 000000000e1355fc <copy>:
81864 copy():
82848 e135fc0: 17fffd8f b e1355fc <copy>

Completed in 197 milliseconds

12