Lines Matching refs:uint32_t
64 (n) = ( (uint32_t) (b)[(i) ] << 24 ) \
65 | ( (uint32_t) (b)[(i) + 1] << 16 ) \
66 | ( (uint32_t) (b)[(i) + 2] << 8 ) \
67 | ( (uint32_t) (b)[(i) + 3] ); \
137 static const uint32_t K[] =
184 uint32_t temp1, temp2, W[64]; in mbedtls_sha256_process()
185 uint32_t A[8]; in mbedtls_sha256_process()
245 uint32_t left; in mbedtls_sha256_update()
253 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha256_update()
256 if( ctx->total[0] < (uint32_t) ilen ) in mbedtls_sha256_update()
292 uint32_t last, padn; in mbedtls_sha256_finish()
293 uint32_t high, low; in mbedtls_sha256_finish()