Home
last modified time | relevance | path

Searched refs:dest (Results 1 – 25 of 28) sorted by relevance

12

/optee_os-3.20.0/lib/libutee/
A Dtee_api_arith_mpi.c180 get_mpi(&mpi, dest); in TEE_BigIntConvertFromS32()
251 get_mpi(&mpi_dest, dest); in TEE_BigIntShiftRight()
253 if (dest == op) { in TEE_BigIntShiftRight()
326 get_mpi(&mpi_dest, dest); in bigint_binary()
328 if (op1 == dest) in bigint_binary()
333 if (op2 == dest) in bigint_binary()
366 get_mpi(&mpi_dest, dest); in bigint_binary_mod()
369 if (op1 == dest) in bigint_binary_mod()
374 if (op2 == dest) in bigint_binary_mod()
414 if (dest != src) { in TEE_BigIntNeg()
[all …]
A Dtee_api.c321 void *TEE_MemMove(void *dest, const void *src, uint32_t size) in TEE_MemMove() argument
323 return memmove(dest, src, size); in TEE_MemMove()
/optee_os-3.20.0/core/lib/libtomcrypt/src/misc/
A Dcopy_or_zeromem.c17 void copy_or_zeromem(const unsigned char* src, unsigned char* dest, unsigned long len, int coz) in copy_or_zeromem() argument
27 LTC_ARGCHKVD(dest != NULL); in copy_or_zeromem()
37 *(LTC_FAST_TYPE_PTR_CAST(&dest[y+z])) = *(LTC_FAST_TYPE_PTR_CAST(&src[y+z])) & fastMask; in copy_or_zeromem()
43 dest[y] = src[y] & mask; in copy_or_zeromem()
/optee_os-3.20.0/lib/libutee/include/
A Dtee_internal_api.h100 void *TEE_MemMove(void *dest, const void *src, uint32_t size);
361 TEE_Result TEE_BigIntConvertFromOctetString(TEE_BigInt *dest,
386 void TEE_BigIntAdd(TEE_BigInt *dest, const TEE_BigInt *op1,
389 void TEE_BigIntSub(TEE_BigInt *dest, const TEE_BigInt *op1,
392 void TEE_BigIntNeg(TEE_BigInt *dest, const TEE_BigInt *op);
394 void TEE_BigIntMul(TEE_BigInt *dest, const TEE_BigInt *op1,
397 void TEE_BigIntSquare(TEE_BigInt *dest, const TEE_BigInt *op);
404 void TEE_BigIntMod(TEE_BigInt *dest, const TEE_BigInt *op,
407 void TEE_BigIntAddMod(TEE_BigInt *dest, const TEE_BigInt *op1,
410 void TEE_BigIntSubMod(TEE_BigInt *dest, const TEE_BigInt *op1,
[all …]
A Dutee_syscalls.h50 TEE_Result _utee_open_ta_session(const TEE_UUID *dest,
100 size_t src_len, void *dest, uint64_t *dest_len);
102 size_t src_len, void *dest, uint64_t *dest_len);
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/
A Dconstant_time_internal.h164 mbedtls_mpi_uint *dest,
212 void mbedtls_ct_memcpy_if_eq( unsigned char *dest,
243 void mbedtls_ct_memcpy_offset( unsigned char *dest,
A Dconstant_time.c302 mbedtls_mpi_uint *dest, in mbedtls_ct_mpi_uint_cond_assign() argument
323 dest[i] = ( src[i] & mask ) | ( dest[i] & ~mask ); in mbedtls_ct_mpi_uint_cond_assign()
409 void mbedtls_ct_memcpy_if_eq( unsigned char *dest, in mbedtls_ct_memcpy_if_eq() argument
421 dest[i] = ( src[i] & mask ) | ( dest[i] & ~mask ); in mbedtls_ct_memcpy_if_eq()
424 void mbedtls_ct_memcpy_offset( unsigned char *dest, in mbedtls_ct_memcpy_offset() argument
435 mbedtls_ct_memcpy_if_eq( dest, src + offsetval, len, in mbedtls_ct_memcpy_offset()
/optee_os-3.20.0/core/arch/arm/plat-stm32mp1/
A Dlink.mk14 $(stm32image_cmd) --source $< --dest $@ --bintype 0x20
19 $(stm32image_cmd) --source $< --dest $@ --bintype 0x21
24 $(stm32image_cmd) --source $< --dest $@ --bintype 0x22
/optee_os-3.20.0/core/lib/zlib/
A Dzutil.c150 void ZLIB_INTERNAL zmemcpy(dest, source, len) in zmemcpy() argument
151 Bytef* dest; in zmemcpy()
157 *dest++ = *source++; /* ??? to be unrolled */
174 void ZLIB_INTERNAL zmemzero(dest, len) in zmemzero() argument
175 Bytef* dest; in zmemzero()
180 *dest++ = 0; /* ??? to be unrolled */
A Dzutil.h228 # define zmemzero(dest, len) _fmemset(dest, 0, len) argument
232 # define zmemzero(dest, len) memset(dest, 0, len) argument
235 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
237 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
A Dzlib.h677 ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
944 ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
1230 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1245 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1268 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1286 ZEXTERN int ZEXPORT uncompress2 OF((Bytef *dest, uLongf *destLen,
A Dinflate.c1493 int ZEXPORT inflateCopy(dest, source) in inflateCopy() argument
1494 z_streamp dest; in inflateCopy()
1503 if (inflateStateCheck(source) || dest == Z_NULL)
1522 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream));
1524 copy->strm = dest;
1536 dest->state = (struct internal_state FAR *)copy;
/optee_os-3.20.0/lib/libutils/isoc/include/
A Dstring.h30 char *strcpy(char *dest, const char *src);
31 char *strncpy(char *dest, const char *src, size_t n);
/optee_os-3.20.0/core/arch/arm/plat-amlogic/scripts/
A Daml_bin2img.py42 def aml_create_header_file(source, dest, entry, res_mem_start, res_mem_size, argument
44 dest_fd = open(dest, 'w+b')
110 destination_file = args.dest
/optee_os-3.20.0/core/arch/arm/plat-stm32mp1/scripts/
A Dstm32image.py76 def stm32image_create_header_file(source, dest, load, entry, bintype): argument
77 dest_fd = open(dest, 'w+b')
127 destination_file = args.dest
/optee_os-3.20.0/core/lib/libtomcrypt/src/misc/bcrypt/
A Dbcrypt.c82 unsigned long left, itts, x, y, hashed_pass_len, step_size, steps, dest, used_rounds; in bcrypt_pbkdf_openbsd() local
169 dest = y * step_size + (blkno - 1); in bcrypt_pbkdf_openbsd()
170 if (dest >= *outlen) in bcrypt_pbkdf_openbsd()
172 out[dest] = buf[2][y]; in bcrypt_pbkdf_openbsd()
/optee_os-3.20.0/core/arch/arm/plat-amlogic/
A Dlink.mk14 $(aml_bin2img_cmd) --source $< --dest $@ --entry 0x5300000 \
/optee_os-3.20.0/core/include/tee/
A Dtee_svc_cryp.h51 size_t src_len, void *dest, uint64_t *dest_len);
53 size_t src_len, void *dest, uint64_t *dest_len);
A Dtee_svc.h53 TEE_Result syscall_open_ta_session(const TEE_UUID *dest,
/optee_os-3.20.0/lib/libutils/ext/include/
A Dcompiler.h110 #define __INTOF_ASSIGN(dest, src) (__extension__({ \ argument
112 typeof(dest) __intof_y = __intof_x; \
115 (void)((dest) = __intof_y) , 0 : 1); \
/optee_os-3.20.0/scripts/
A Dts_bin_to_c.py41 dest="compress",
48 dest="manifest",
A Dtee_bin_parser.py12 parser.add_argument('--input', required=False, dest='inf',
A Dsign_encrypt.py70 a = self.dest + '_assigned'
74 setattr(namespace, self.dest, values)
110 '--sig', required=True, dest='sigf',
115 '--dig', required=True, dest='digf',
120 '--in', required=False, dest='inf', help='''
126 '--out', required=True, dest='outf',
146 '--in', required=True, dest='inf',
168 '--in', required=True, dest='inf', help='''
173 '--out', required=True, dest='outf',
199 dest='command', metavar='')
/optee_os-3.20.0/core/drivers/scmi-msg/
A Dclock.c254 static void write_rate_desc_array_in_buffer(char *dest, unsigned long *rates, in write_rate_desc_array_in_buffer() argument
260 assert(IS_ALIGNED_WITH_TYPE(dest, uint32_t)); in write_rate_desc_array_in_buffer()
261 out = (uint32_t *)(uintptr_t)dest; in write_rate_desc_array_in_buffer()
/optee_os-3.20.0/core/lib/libtomcrypt/
A Dmpi_desc.c581 mbedtls_mpi dest; in exptmod() local
583 mbedtls_mpi_init_mempool(&dest); in exptmod()
584 res = mbedtls_mpi_exp_mod(&dest, a, b, c, NULL); in exptmod()
586 res = mbedtls_mpi_copy(d, &dest); in exptmod()
587 mbedtls_mpi_free(&dest); in exptmod()

Completed in 28 milliseconds

12