Searched refs:PUT_UINT32_LE (Results 1 – 5 of 5) sorted by relevance
/optee_os/lib/libmbedtls/mbedtls/library/ |
A D | md4.c | 60 #ifndef PUT_UINT32_LE 61 #define PUT_UINT32_LE(n,b,i) \ macro 336 PUT_UINT32_LE( low, msglen, 0 ); in mbedtls_md4_finish_ret() 337 PUT_UINT32_LE( high, msglen, 4 ); in mbedtls_md4_finish_ret() 350 PUT_UINT32_LE( ctx->state[0], output, 0 ); in mbedtls_md4_finish_ret() 351 PUT_UINT32_LE( ctx->state[1], output, 4 ); in mbedtls_md4_finish_ret() 352 PUT_UINT32_LE( ctx->state[2], output, 8 ); in mbedtls_md4_finish_ret() 353 PUT_UINT32_LE( ctx->state[3], output, 12 ); in mbedtls_md4_finish_ret()
|
A D | md5.c | 59 #ifndef PUT_UINT32_LE 60 #define PUT_UINT32_LE(n,b,i) \ macro 356 PUT_UINT32_LE( low, ctx->buffer, 56 ); in mbedtls_md5_finish_ret() 357 PUT_UINT32_LE( high, ctx->buffer, 60 ); in mbedtls_md5_finish_ret() 365 PUT_UINT32_LE( ctx->state[0], output, 0 ); in mbedtls_md5_finish_ret() 366 PUT_UINT32_LE( ctx->state[1], output, 4 ); in mbedtls_md5_finish_ret() 367 PUT_UINT32_LE( ctx->state[2], output, 8 ); in mbedtls_md5_finish_ret() 368 PUT_UINT32_LE( ctx->state[3], output, 12 ); in mbedtls_md5_finish_ret()
|
A D | ripemd160.c | 60 #ifndef PUT_UINT32_LE 61 #define PUT_UINT32_LE(n,b,i) \ macro 403 PUT_UINT32_LE( low, msglen, 0 ); in mbedtls_ripemd160_finish_ret() 404 PUT_UINT32_LE( high, msglen, 4 ); in mbedtls_ripemd160_finish_ret() 417 PUT_UINT32_LE( ctx->state[0], output, 0 ); in mbedtls_ripemd160_finish_ret() 418 PUT_UINT32_LE( ctx->state[1], output, 4 ); in mbedtls_ripemd160_finish_ret() 419 PUT_UINT32_LE( ctx->state[2], output, 8 ); in mbedtls_ripemd160_finish_ret() 420 PUT_UINT32_LE( ctx->state[3], output, 12 ); in mbedtls_ripemd160_finish_ret() 421 PUT_UINT32_LE( ctx->state[4], output, 16 ); in mbedtls_ripemd160_finish_ret()
|
A D | aria.c | 71 #ifndef PUT_UINT32_LE 72 #define PUT_UINT32_LE( n, b, i ) \ macro 585 PUT_UINT32_LE( a, output, 0 ); in mbedtls_aria_crypt_ecb() 586 PUT_UINT32_LE( b, output, 4 ); in mbedtls_aria_crypt_ecb() 587 PUT_UINT32_LE( c, output, 8 ); in mbedtls_aria_crypt_ecb() 588 PUT_UINT32_LE( d, output, 12 ); in mbedtls_aria_crypt_ecb()
|
A D | aes.c | 73 #ifndef PUT_UINT32_LE 74 #define PUT_UINT32_LE(n,b,i) \ macro 913 PUT_UINT32_LE( t.X[0], output, 0 ); in mbedtls_internal_aes_encrypt() 914 PUT_UINT32_LE( t.X[1], output, 4 ); in mbedtls_internal_aes_encrypt() 915 PUT_UINT32_LE( t.X[2], output, 8 ); in mbedtls_internal_aes_encrypt() 916 PUT_UINT32_LE( t.X[3], output, 12 ); in mbedtls_internal_aes_encrypt() 986 PUT_UINT32_LE( t.X[0], output, 0 ); in mbedtls_internal_aes_decrypt() 987 PUT_UINT32_LE( t.X[1], output, 4 ); in mbedtls_internal_aes_decrypt() 988 PUT_UINT32_LE( t.X[2], output, 8 ); in mbedtls_internal_aes_decrypt() 989 PUT_UINT32_LE( t.X[3], output, 12 ); in mbedtls_internal_aes_decrypt()
|
Completed in 14 milliseconds