Home
last modified time | relevance | path

Searched refs:H (Results 1 – 17 of 17) sorted by relevance

/optee_os-3.20.0/core/arch/arm/dts/
A Dstm32mp15-pinctrl.dtsi85 <STM32_PINMUX('H', 9, AF13)>,/* DCMI_D0 */
86 <STM32_PINMUX('H', 10, AF13)>,/* DCMI_D1 */
87 <STM32_PINMUX('H', 11, AF13)>,/* DCMI_D2 */
88 <STM32_PINMUX('H', 12, AF13)>,/* DCMI_D3 */
89 <STM32_PINMUX('H', 14, AF13)>,/* DCMI_D4 */
94 <STM32_PINMUX('H', 7, AF13)>,/* DCMI_D9 */
96 <STM32_PINMUX('H', 15, AF13)>;/* DCMI_D11 */
106 <STM32_PINMUX('H', 9, ANALOG)>,/* DCMI_D0 */
107 <STM32_PINMUX('H', 10, ANALOG)>,/* DCMI_D1 */
127 <STM32_PINMUX('H', 10, AF13)>,/* DCMI_D1 */
[all …]
A Dstm32mp15xx-dhcor-avenger96.dtsi198 "AV96-G", "AV96-H", "", "";
A Dstm32mp15xx-dhcom-som.dtsi237 gpio-line-names = "DHCOM-G", "DHCOM-O", "DHCOM-H", "DHCOM-I",
/optee_os-3.20.0/core/lib/libtomcrypt/src/encauth/gcm/
A Dgcm_mult_h_arm_ce.c26 b = get_be64(gcm->H); in gcm_mult_h()
27 a = get_be64(gcm->H + 8); in gcm_mult_h()
A Dgcm_init.c53 if ((err = cipher_descriptor[cipher]->ecb_encrypt(B, gcm->H, &gcm->K)) != CRYPT_OK) { in gcm_init()
74 gcm_gf_mult(gcm->H, B, &gcm->PC[0][y][0]); in gcm_init()
A Dgcm_mult_h.c43 gcm_gf_mult(gcm->H, I, T); in gcm_mult_h()
/optee_os-3.20.0/core/crypto/
A Dsm3.c57 uint32_t A, B, C, D, E, F, G, H; in sm3_process() local
120 H = ctx->state[7]; in sm3_process()
126 TT2 = GG0(E, F, G) + H + SS1 + W[j]; in sm3_process()
131 H = G; in sm3_process()
141 TT2 = GG1(E, F, G) + H + SS1 + W[j]; in sm3_process()
146 H = G; in sm3_process()
159 ctx->state[7] ^= H; in sm3_process()
/optee_os-3.20.0/core/lib/libtomcrypt/src/hashes/
A Dmd5.c33 #define H(x,y,z) (x^y^z) macro
45 a = (a + H(b,c,d) + M + t); a = ROL(a, s) + b;
84 a = (a + H(b,c,d) + M + t); a = ROLc(a, s) + b;
A Dmd4.c46 #define H(x, y, z) ((x) ^ (y) ^ (z)) macro
63 (a) += H ((b), (c), (d)) + (x) + 0x6ed9eba1UL; \
A Drmd128.c39 #define H(x, y, z) (((x) | ~(y)) ^ (z)) macro
52 (a) += H((b), (c), (d)) + (x) + 0x6ed9eba1UL;\
68 (a) += H((b), (c), (d)) + (x) + 0x5c4dd124UL;\
A Drmd256.c33 #define H(x, y, z) (((x) | ~(y)) ^ (z)) macro
46 (a) += H((b), (c), (d)) + (x) + 0x6ed9eba1UL;\
62 (a) += H((b), (c), (d)) + (x) + 0x5c4dd124UL;\
A Drmd160.c39 #define H(x, y, z) (((x) | ~(y)) ^ (z)) macro
55 (a) += H((b), (c), (d)) + (x) + 0x6ed9eba1UL;\
80 (a) += H((b), (c), (d)) + (x) + 0x6d703ef3UL;\
A Drmd320.c34 #define H(x, y, z) (((x) | ~(y)) ^ (z)) macro
50 (a) += H((b), (c), (d)) + (x) + 0x6ed9eba1UL;\
75 (a) += H((b), (c), (d)) + (x) + 0x6d703ef3UL;\
/optee_os-3.20.0/core/arch/arm/crypto/
A Dghash-ce-core_a32.S93 vmull.p8 t1q, t1l, \bd @ H = A2*B
102 veor t1q, t1q, t3q @ M = G + H
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/
A Drsa.c526 mbedtls_mpi H, G, L; in mbedtls_rsa_gen_key() local
539 mbedtls_mpi_init( &H ); in mbedtls_rsa_gen_key()
566 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &H, &ctx->P, &ctx->Q ) ); in mbedtls_rsa_gen_key()
567 if( mbedtls_mpi_bitlen( &H ) <= ( ( nbits >= 200 ) ? ( ( nbits >> 1 ) - 99 ) : 0 ) ) in mbedtls_rsa_gen_key()
571 if( H.s < 0 ) in mbedtls_rsa_gen_key()
577 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &H, &ctx->P, &ctx->Q ) ); in mbedtls_rsa_gen_key()
580 MBEDTLS_MPI_CHK( mbedtls_mpi_gcd( &G, &ctx->E, &H ) ); in mbedtls_rsa_gen_key()
586 MBEDTLS_MPI_CHK( mbedtls_mpi_div_mpi( &L, NULL, &H, &G ) ); in mbedtls_rsa_gen_key()
619 mbedtls_mpi_free( &H ); in mbedtls_rsa_gen_key()
/optee_os-3.20.0/core/lib/libtomcrypt/src/headers/
A Dtomcrypt_mac.h482 unsigned char H[16], /* multiplier */ member
/optee_os-3.20.0/lib/libmbedtls/mbedtls/
A DChangeLog2540 TLS" - H. Bock, A. Zauner, S. Devlin, J. Somorovsky, P. Jovanovic.

Completed in 24 milliseconds