/optee_os/lib/libutils/isoc/arch/arm/softfloat/source/ |
A D | s_mul64To128.c | 46 uint32_t a32, a0, b32, b0; in softfloat_mul64To128() local 53 b0 = b; in softfloat_mul64To128() 54 z.v0 = (uint_fast64_t) a0 * b0; in softfloat_mul64To128() 55 mid1 = (uint_fast64_t) a32 * b0; in softfloat_mul64To128()
|
A D | s_mul64To128M.c | 46 uint32_t a32, a0, b32, b0; in softfloat_mul64To128M() local 52 b0 = b; in softfloat_mul64To128M() 53 z0 = (uint64_t) a0 * b0; in softfloat_mul64To128M() 54 mid1 = (uint64_t) a32 * b0; in softfloat_mul64To128M()
|
A D | s_sub128.c | 45 softfloat_sub128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 ) in softfloat_sub128() argument 49 z.v0 = a0 - b0; in softfloat_sub128() 50 z.v64 = a64 - b64 - (a0 < b0); in softfloat_sub128()
|
A D | s_mul128To256M.c | 48 uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0, uint64_t *zPtr ) in softfloat_mul128To256M() argument 53 p0 = softfloat_mul64To128( a0, b0 ); in softfloat_mul128To256M() 55 p64 = softfloat_mul64To128( a64, b0 ); in softfloat_mul128To256M()
|
A D | s_eq128.c | 44 bool softfloat_eq128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 ) in softfloat_eq128() argument 47 return (a64 == b64) && (a0 == b0); in softfloat_eq128()
|
A D | s_le128.c | 44 bool softfloat_le128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 ) in softfloat_le128() argument 47 return (a64 < b64) || ((a64 == b64) && (a0 <= b0)); in softfloat_le128()
|
A D | s_lt128.c | 44 bool softfloat_lt128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 ) in softfloat_lt128() argument 47 return (a64 < b64) || ((a64 == b64) && (a0 < b0)); in softfloat_lt128()
|
A D | s_add128.c | 45 softfloat_add128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 ) in softfloat_add128() argument 49 z.v0 = a0 + b0; in softfloat_add128()
|
/optee_os/lib/libutils/isoc/arch/arm/softfloat/source/include/ |
A D | primitives.h | 201 bool softfloat_eq128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 ) in softfloat_eq128() argument 202 { return (a64 == b64) && (a0 == b0); } in softfloat_eq128() 217 { return (a64 < b64) || ((a64 == b64) && (a0 <= b0)); } in softfloat_le128() 232 { return (a64 < b64) || ((a64 == b64) && (a0 < b0)); } in softfloat_lt128() 463 softfloat_add128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 ) in softfloat_add128() argument 466 z.v0 = a0 + b0; in softfloat_add128() 472 softfloat_add128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 ); 498 softfloat_sub128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 ) in softfloat_sub128() argument 501 z.v0 = a0 - b0; in softfloat_sub128() 503 z.v64 -= (a0 < b0); in softfloat_sub128() [all …]
|
/optee_os/core/drivers/crypto/stm32/ |
A D | authenc.c | 145 static void stm32_ae_ccm_generate_b0(uint8_t *b0, in stm32_ae_ccm_generate_b0() argument 156 memset(b0, 0, TEE_AES_BLOCK_SIZE); in stm32_ae_ccm_generate_b0() 158 b0[0] = ((dinit->aad_len ? 1 : 0) << 6) | in stm32_ae_ccm_generate_b0() 163 memcpy(b0 + 1, dinit->nonce.data, dinit->nonce.length); in stm32_ae_ccm_generate_b0() 167 b0[i] = payload_len & 0xFF; in stm32_ae_ccm_generate_b0()
|
A D | stm32_cryp.c | 514 uint32_t b0[AES_BLOCK_NB_U32] = { 0 }; in ccm_first_context() local 532 memcpy(b0, iv, sizeof(b0)); in ccm_first_context() 547 memcpy(ctx->ctr0_ccm, iv, sizeof(b0)); in ccm_first_context() 556 res = write_align_block(ctx, b0); in ccm_first_context()
|
/optee_os/out/arm/export-ta_arm32/host_include/mbedtls/ |
A D | bn_mul.h | 953 mbedtls_mpi_uint s0, s1, b0, b1; \ 955 b0 = ( b << biH ) >> biH; \ 961 rx = s0 * b1; r0 = s0 * b0; \ 962 ry = s1 * b0; r1 = s1 * b1; \
|
/optee_os/out/arm/export-ta_arm64/include/mbedtls/ |
A D | bn_mul.h | 953 mbedtls_mpi_uint s0, s1, b0, b1; \ 955 b0 = ( b << biH ) >> biH; \ 961 rx = s0 * b1; r0 = s0 * b0; \ 962 ry = s1 * b0; r1 = s1 * b1; \
|
/optee_os/out/arm/export-ta_arm32/include/mbedtls/ |
A D | bn_mul.h | 953 mbedtls_mpi_uint s0, s1, b0, b1; \ 955 b0 = ( b << biH ) >> biH; \ 961 rx = s0 * b1; r0 = s0 * b0; \ 962 ry = s1 * b0; r1 = s1 * b1; \
|
/optee_os/out/arm/export-ta_arm64/host_include/mbedtls/ |
A D | bn_mul.h | 953 mbedtls_mpi_uint s0, s1, b0, b1; \ 955 b0 = ( b << biH ) >> biH; \ 961 rx = s0 * b1; r0 = s0 * b0; \ 962 ry = s1 * b0; r1 = s1 * b1; \
|
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/ |
A D | bn_mul.h | 953 mbedtls_mpi_uint s0, s1, b0, b1; \ 955 b0 = ( b << biH ) >> biH; \ 961 rx = s0 * b1; r0 = s0 * b0; \ 962 ry = s1 * b0; r1 = s1 * b1; \
|
/optee_os/core/lib/libtomcrypt/src/ciphers/twofish/ |
A D | twofish.c | 98 unsigned char a0,b0,a1,b1,a2,b2,a3,b3,a4,b4,y; in _sbox() local 102 b0 = (unsigned char)((x)&15); in _sbox() 105 a1 = a0 ^ b0; in _sbox() 108 b1 = (a0 ^ ((b0<<3)|(b0>>1)) ^ (a0<<3)) & 15; in _sbox()
|
/optee_os/core/arch/arm/crypto/ |
A D | ghash-ce-core_a32.S | 192 __pmull_\pn XL, XL_L, SHASH_L, s1l, s2l, s3l, s4l @ a0 * b0 193 __pmull_\pn XM, T1_L, SHASH2_\pn @ (a1+a0)(b1+b0)
|
/optee_os/out/arm/core/ |
A D | tee.symb_sizes | 60 000000000e1584b4 00000000000003b0 r teletex_table 92 000000000e133ad8 00000000000002b0 T sm2_ltc_dsa_sign 93 000000000e1104bc 00000000000002b0 T crypto_rng_read 187 000000000e16cfa8 00000000000001b0 D ltc_mp 188 000000000e11cb44 00000000000001b0 t invoke_command 189 000000000e139170 00000000000001b0 t _sha512_compress 567 000000000e10c704 00000000000000b0 T tee_mm_free 568 000000000e12173c 00000000000000b0 T syscall_wait 571 000000000e1208e4 00000000000000b0 t get_prop_set 574 000000000e11b284 00000000000000b0 t cmp_param_mem [all …]
|
A D | tee.dmp | 1161 000000000e1208e4 l F .text 00000000000000b0 get_prop_set 1891 000000000e10c704 g F .text 00000000000000b0 tee_mm_free 2116 000000000e14b554 g F .text 00000000000000b0 bgetr 2428 000000000e16cfa8 g O .data 00000000000001b0 ltc_mp 4274 e102674: 140008b0 b e104934 <el0_sync_abort> 46312 e11da2c: 940035b0 bl e12b0ec <tee_fs_htree_close> 57161 e124e40: 940044b0 bl e136100 <crypto_bignum_bin2bn> 61006 e1278a8: 940090b0 bl e14bb68 <realloc> 76314 e131840: 940068b0 bl e14bb00 <calloc> 83387 e13647c: 924014b0 and x16, x5, #0x3f [all …]
|
/optee_os/out/arm/ldelf/ |
A D | ldelf.dmp | 839 4b0: aa1503e0 mov x0, x21 928 00000000000005b0 <__panic>: 1039 6b0: aa0303e1 mov x1, x3 1156 7b0: 910003fd mov x29, sp 2255 13b0: d65f03c0 ret 3534 21b0: aa0103e3 mov x3, x1 5846 39b0: 2a1403e0 mov w0, w20 6640 42b0: aa0003e5 mov x5, x0 8330 54b0: eb02007f cmp x3, x2 9521 61b0: eb05003f cmp x1, x5 [all …]
|
/optee_os/out/arm/ta/avb/ |
A D | 023f8f1a-292a-432b-8fc4-de8471358067.dmp | 683 000000b0 <TA_DestroyEntryPoint>: 686 b0: 4770 bx lr 865 1b0: 4604 mov r4, r0 1462 5b0: bf2c ite cs 3008 10b0: 4642 mov r2, r8 5796 22b0: 447b add r3, pc 8534 35b0: bfcc ite gt 9118 39c2: 47b0 blx r6 15222 000064b0 <bget>: 17137 71b0: 4770 bx lr [all …]
|
/optee_os/out/arm/ta/trusted_keys/ |
A D | f04a0fe7-1f5d-4b9b-abf7-619b85b4ce8c.dmp | 850 1b0: 4478 add r0, pc 1087 342: 42b0 cmp r0, r6 4166 17b0: 4621 mov r1, r4 4321 18b0: 429c cmp r4, r3 4993 1ca4: 42b0 cmp r0, r6 5018 1cce: 47b0 blx r6 5440 20b0: 2f00 cmp r7, #0 5713 22b0: 428c cmp r4, r1 8757 36b0: bf18 it ne 10531 42b0: e3a06001 mov r6, #1 [all …]
|
/optee_os/out/arm/ta/pkcs11/ |
A D | fd02c9da-306c-48c7-a49c-bbd827ae86ee.dmp | 1103 000000b0 <add_attribute>: 2036 6b0: 4629 mov r1, r5 2184 7b0: 4629 mov r1, r5 4688 17b0: 4620 mov r0, r4 6015 20b0: f7fd fffe bl b0 <add_attribute> 6597 24b0: 4691 mov r9, r2 6743 25b0: 2800 cmp r0, #0 26912 b11a: 47b0 blx r6 36449 f2ce: 47b0 blx r6 39251 105b0: bf14 ite ne [all …]
|