Lines Matching refs:tmp
1124 unsigned char tmp[16]; in mbedtls_aes_crypt_xts() local
1163 tmp[i] = input[i] ^ tweak[i]; in mbedtls_aes_crypt_xts()
1165 ret = mbedtls_aes_crypt_ecb( &ctx->crypt, mode, tmp, tmp ); in mbedtls_aes_crypt_xts()
1170 output[i] = tmp[i] ^ tweak[i]; in mbedtls_aes_crypt_xts()
1197 tmp[i] = input[i] ^ t[i]; in mbedtls_aes_crypt_xts()
1203 tmp[i] = prev_output[i] ^ t[i]; in mbedtls_aes_crypt_xts()
1205 ret = mbedtls_aes_crypt_ecb( &ctx->crypt, mode, tmp, tmp ); in mbedtls_aes_crypt_xts()
1212 prev_output[i] = tmp[i] ^ t[i]; in mbedtls_aes_crypt_xts()
1886 unsigned char tmp[16]; in mbedtls_aes_self_test() local
1888 memcpy( tmp, prv, 16 ); in mbedtls_aes_self_test()
1890 memcpy( buf, tmp, 16 ); in mbedtls_aes_self_test()