/optee_os/core/lib/libtomcrypt/src/ciphers/ |
A D | camellia.c | 182 static ulong64 F(ulong64 x) in F() function 260 B ^= F(A ^ key_sigma[0]); in camellia_setup() 261 A ^= F(B ^ key_sigma[1]); in camellia_setup() 269 B ^= F(A ^ key_sigma[2]); in camellia_setup() 270 A ^= F(B ^ key_sigma[3]); in camellia_setup() 346 B ^= F(A ^ key_sigma[4]); in camellia_setup() 347 A ^= F(B ^ key_sigma[5]); in camellia_setup() 450 R ^= F(L ^ skey->camellia.k[0]); in camellia_ecb_encrypt() 451 L ^= F(R ^ skey->camellia.k[1]); in camellia_ecb_encrypt() 452 R ^= F(L ^ skey->camellia.k[2]); in camellia_ecb_encrypt() [all …]
|
A D | blowfish.c | 377 #define F(x) ((S1[LTC_BYTE(x,3)] + S2[LTC_BYTE(x,2)]) ^ S3[LTC_BYTE(x,1)]) + S4[LTC_BYTE(x,0)] macro 379 #define F(x) ((skey->blowfish.S[0][LTC_BYTE(x,3)] + skey->blowfish.S[1][LTC_BYTE(x,2)]) ^ skey->blo… macro 418 L ^= skey->blowfish.K[r++]; R ^= F(L); in _blowfish_ecb_encrypt() 419 R ^= skey->blowfish.K[r++]; L ^= F(R); in _blowfish_ecb_encrypt() 420 L ^= skey->blowfish.K[r++]; R ^= F(L); in _blowfish_ecb_encrypt() 421 R ^= skey->blowfish.K[r++]; L ^= F(R); in _blowfish_ecb_encrypt() 484 L ^= F(R); R ^= skey->blowfish.K[r--]; in _blowfish_ecb_decrypt() 485 R ^= F(L); L ^= skey->blowfish.K[r--]; in _blowfish_ecb_decrypt() 486 L ^= F(R); R ^= skey->blowfish.K[r--]; in _blowfish_ecb_decrypt() 487 R ^= F(L); L ^= skey->blowfish.K[r--]; in _blowfish_ecb_decrypt()
|
A D | kseed.c | 187 #define F(L1, L2, R1, R2, K1, K2) \ macro 245 F(P[0], P[1], P[2], P[3], K[0], K[1]); in rounds() 246 F(P[2], P[3], P[0], P[1], K[2], K[3]); in rounds()
|
/optee_os/ |
A D | MAINTAINERS | 66 F: core/arch/arm/plat-sam/ 72 F: core/arch/arm/plat-bcm/ 77 F: core/drivers/imx_i2c.c 82 F: core/drivers/imx_rngb.c 101 F: ldelf/ftrace.c 147 F: core/drivers/ls_i2c.c 173 F: core/drivers/clk/ 180 F: core/drivers/crypto/ 193 F: ta/pkcs11 299 F: * [all …]
|
/optee_os/lib/libmbedtls/mbedtls/library/ |
A D | aes.c | 134 V(0D,F2,F2,FF), V(BD,6B,6B,D6), V(B1,6F,6F,DE), V(54,C5,C5,91), \ 137 V(45,CA,CA,8F), V(9D,82,82,1F), V(40,C9,C9,89), V(87,7D,7D,FA), \ 142 V(5A,36,36,6C), V(41,3F,3F,7E), V(02,F7,F7,F5), V(4F,CC,CC,83), \ 146 V(28,18,18,30), V(A1,96,96,37), V(0F,05,05,0A), V(B5,9A,9A,2F), \ 148 V(26,EB,EB,CD), V(69,27,27,4E), V(CD,B2,B2,7F), V(9F,75,75,EA), \ 152 V(7B,29,29,52), V(3E,E3,E3,DD), V(71,2F,2F,5E), V(97,84,84,13), \ 159 V(CF,45,45,8A), V(10,F9,F9,E9), V(06,02,02,04), V(81,7F,7F,FE), \ 160 V(F0,50,50,A0), V(44,3C,3C,78), V(BA,9F,9F,25), V(E3,A8,A8,4B), \ 161 V(F3,51,51,A2), V(FE,A3,A3,5D), V(C0,40,40,80), V(8A,8F,8F,05), \ 166 V(E1,5F,5F,BE), V(A2,97,97,35), V(CC,44,44,88), V(39,17,17,2E), \ [all …]
|
A D | md4.c | 145 #define F(x, y, z) (((x) & (y)) | ((~(x)) & (z))) in mbedtls_internal_md4_process() macro 149 (a) += F((b),(c),(d)) + (x); \ in mbedtls_internal_md4_process() 172 #undef F in mbedtls_internal_md4_process() 174 #define F(x,y,z) (((x) & (y)) | ((x) & (z)) | ((y) & (z))) in mbedtls_internal_md4_process() macro 178 (a) += F((b),(c),(d)) + (x) + 0x5A827999; \ in mbedtls_internal_md4_process() 200 #undef F in mbedtls_internal_md4_process() 202 #define F(x,y,z) ((x) ^ (y) ^ (z)) in mbedtls_internal_md4_process() macro 206 (a) += F((b),(c),(d)) + (x) + 0x6ED9EBA1; \ in mbedtls_internal_md4_process() 227 #undef F in mbedtls_internal_md4_process()
|
A D | md5.c | 143 (a) += F((b),(c),(d)) + local.X[(k)] + (t); \ in mbedtls_internal_md5_process() 152 #define F(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) in mbedtls_internal_md5_process() macro 171 #undef F in mbedtls_internal_md5_process() 173 #define F(x,y,z) ((y) ^ ((z) & ((x) ^ (y)))) in mbedtls_internal_md5_process() macro 192 #undef F in mbedtls_internal_md5_process() 194 #define F(x,y,z) ((x) ^ (y) ^ (z)) in mbedtls_internal_md5_process() macro 213 #undef F in mbedtls_internal_md5_process() 215 #define F(x,y,z) ((y) ^ ((x) | ~(z))) in mbedtls_internal_md5_process() macro 234 #undef F in mbedtls_internal_md5_process()
|
A D | ripemd160.c | 167 P( (a), (b), (c), (d), (e), (r), (s), F, K ); \ in mbedtls_internal_ripemd160_process() 172 #define F F1 in mbedtls_internal_ripemd160_process() macro 192 #undef F in mbedtls_internal_ripemd160_process() 197 #define F F2 in mbedtls_internal_ripemd160_process() macro 217 #undef F in mbedtls_internal_ripemd160_process() 222 #define F F3 in mbedtls_internal_ripemd160_process() macro 242 #undef F in mbedtls_internal_ripemd160_process() 247 #define F F4 in mbedtls_internal_ripemd160_process() macro 267 #undef F in mbedtls_internal_ripemd160_process() 272 #define F F5 in mbedtls_internal_ripemd160_process() macro [all …]
|
A D | sha1.c | 167 (e) += S((a),5) + F((b),(c),(d)) + K + (x); \ in mbedtls_internal_sha1_process() 177 #define F(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) in mbedtls_internal_sha1_process() macro 202 #undef F in mbedtls_internal_sha1_process() 204 #define F(x,y,z) ((x) ^ (y) ^ (z)) in mbedtls_internal_sha1_process() macro 229 #undef F in mbedtls_internal_sha1_process() 231 #define F(x,y,z) (((x) & (y)) | ((z) & ((x) | (y)))) in mbedtls_internal_sha1_process() macro 256 #undef F in mbedtls_internal_sha1_process() 258 #define F(x,y,z) ((x) ^ (y) ^ (z)) in mbedtls_internal_sha1_process() macro 283 #undef F in mbedtls_internal_sha1_process()
|
A D | blowfish.c | 77 static uint32_t F( mbedtls_blowfish_context *ctx, uint32_t x ) in F() function 107 Xr = F( ctx, Xl ) ^ Xr; in blowfish_enc() 136 Xr = F( ctx, Xl ) ^ Xr; in blowfish_dec()
|
/optee_os/core/arch/arm/dts/ |
A D | stm32mp15-pinctrl.dtsi | 11 pinmux = <STM32_PINMUX('F', 12, ANALOG)>; 18 <STM32_PINMUX('F', 12, ANALOG)>, /* ADC1 in6 */ 19 <STM32_PINMUX('F', 13, ANALOG)>, /* ADC2 in2 */ 20 <STM32_PINMUX('F', 14, ANALOG)>; /* ADC2 in6 */ 212 <STM32_PINMUX('F', 15, AF5)>; /* I2C1_SDA */ 229 <STM32_PINMUX('F', 15, AF5)>; /* I2C1_SDA */ 317 <STM32_PINMUX('F', 10, AF14)>, /* LCD_DE */ 353 <STM32_PINMUX('F', 10, ANALOG)>, /* LCD_DE */ 939 <STM32_PINMUX('F', 4, AF9)>, /* SDMMC3_D1 */ 940 <STM32_PINMUX('F', 5, AF9)>, /* SDMMC3_D2 */ [all …]
|
/optee_os/core/crypto/ |
A D | sm3.c | 52 uint32_t A, B, C, D, E, F, G, H; in sm3_process() local 113 F = ctx->state[5]; in sm3_process() 121 TT2 = GG0(E, F, G) + H + SS1 + W[j]; in sm3_process() 127 G = ROTL(F, 19); in sm3_process() 128 F = E; in sm3_process() 136 TT2 = GG1(E, F, G) + H + SS1 + W[j]; in sm3_process() 142 G = ROTL(F, 19); in sm3_process() 143 F = E; in sm3_process() 152 ctx->state[5] ^= F; in sm3_process()
|
/optee_os/core/drivers/bnxt/ |
A D | bnxt_fw.c | 335 #define F 34 /* Upper limit for match_length */ in ape_section_uncompress() macro 344 uint8_t text_buf[NS + F - 1]; in ape_section_uncompress() 349 for (i = 0; i < NS - F; i++) in ape_section_uncompress() 352 r = NS - F; in ape_section_uncompress()
|
/optee_os/out/arm/ta/trusted_keys/ |
A D | f04a0fe7-1f5d-4b9b-abf7-619b85b4ce8c.dmp | 232 000088f8 l F .text 00000020 myrand 288 00000e76 g F .text 0000003a printf 335 00000eb0 g F .text 00000024 puts 352 00008da8 g F .text 00000084 bgetr 365 00008b40 g F .text 00000060 bgetz 386 00004900 g F .text 00000018 abort 461 000034c6 g F .text 00000018 rand 506 00008e2c g F .text 0000009c bpool 564 00008938 g F .text 00000208 bget 605 00008ba0 g F .text 00000208 brel [all …]
|
/optee_os/out/arm/ta/avb/ |
A D | 023f8f1a-292a-432b-8fc4-de8471358067.dmp | 220 00006470 l F .text 00000020 myrand 276 00000d2a g F .text 0000003a printf 320 00000d64 g F .text 00000024 puts 336 00006920 g F .text 00000084 bgetr 348 000066b8 g F .text 00000060 bgetz 369 000025dc g F .text 00000018 abort 439 00008bda g F .text 00000018 rand 480 000069a4 g F .text 0000009c bpool 536 000064b0 g F .text 00000208 bget 574 00006718 g F .text 00000208 brel [all …]
|
/optee_os/core/lib/libtomcrypt/src/hashes/ |
A D | md5.c | 38 #define F(x,y,z) (z ^ (x & (y ^ z))) macro 46 a = (a + F(b,c,d) + M + t); a = ROL(a, s) + b; 85 a = (a + F(b,c,d) + M + t); a = ROLc(a, s) + b;
|
A D | md4.c | 51 #define F(x, y, z) (z ^ (x & (y ^ z))) macro 62 (a) += F ((b), (c), (d)) + (x); \
|
A D | rmd128.c | 44 #define F(x, y, z) ((x) ^ (y) ^ (z)) macro 51 (a) += F((b), (c), (d)) + (x);\ 67 (a) += F((b), (c), (d)) + (x);\
|
A D | rmd256.c | 38 #define F(x, y, z) ((x) ^ (y) ^ (z)) macro 45 (a) += F((b), (c), (d)) + (x);\ 61 (a) += F((b), (c), (d)) + (x);\
|
/optee_os/core/arch/arm/crypto/ |
A D | ghash-ce-core_a32.S | 87 vmull.p8 t0q, t0l, \bd @ F = A1*B 96 veor t0q, t0q, t4q @ L = E + F
|
/optee_os/ta/arch/arm/ |
A D | link_shlib.mk | 48 $(q)ln -sf $(<F) $@
|
/optee_os/out/arm/export-ta_arm32/mk/ |
A D | link_shlib.mk | 48 $(q)ln -sf $(<F) $@
|
/optee_os/out/arm/export-ta_arm64/mk/ |
A D | link_shlib.mk | 48 $(q)ln -sf $(<F) $@
|
/optee_os/out/arm/ta/pkcs11/ |
A D | fd02c9da-306c-48c7-a49c-bbd827ae86ee.dmp | 136 000014bc l F .text 00000074 do_hash 207 00003b18 l F .text 00000048 id2str 577 0000a2fc g F .text 00000024 puts 607 000121f4 g F .text 00000084 bgetr 626 00011f8c g F .text 00000060 bgetz 657 0000dd4c g F .text 00000018 abort 762 0000c912 g F .text 00000018 rand 827 00012278 g F .text 0000009c bpool 907 00011d84 g F .text 00000208 bget 975 00011fec g F .text 00000208 brel [all …]
|
/optee_os/out/arm/ldelf/ |
A D | ldelf.dmp | 231 00000000000058fc l F .text 0000000000000018 strcpy 241 0000000000000070 l F .text 00000000000000ec memcpy 244 0000000000005788 l F .text 0000000000000018 malloc 246 000000000000536c l F .text 00000000000000d0 bgetr 250 0000000000005054 l F .text 0000000000000088 bgetz 257 00000000000057a0 l F .text 000000000000001c calloc 271 000000000000543c l F .text 00000000000000c8 bpool 281 0000000000004d8c l F .text 00000000000002c8 bget 284 0000000000000440 l F .text 0000000000000170 ldelf 296 00000000000050dc l F .text 0000000000000290 brel [all …]
|