Lines Matching refs:i
488 size_t i, j; in derive_key() local
498 for (i = 0U, j = len; j < 32U; in derive_key()
499 i += sizeof(uint32_t), j += sizeof(uint32_t)) { in derive_key()
500 memcpy(key + j, key + i, sizeof(uint32_t)); in derive_key()
517 size_t i; in plat_get_enc_key_info() local
537 for (i = 0U; i < read_len / sizeof(uint32_t); i++) { in plat_get_enc_key_info()
541 if (stm32_get_otp_value_from_idx(otp_idx + i, &otp_val) != 0) { in plat_get_enc_key_info()
548 memcpy(key + i * sizeof(uint32_t), &tmp, sizeof(tmp)); in plat_get_enc_key_info()
583 unsigned int i; in stm32_decrypt_aes_gcm() local
609 for (i = 0U; i < tag_len; i++) { in stm32_decrypt_aes_gcm()
610 diff |= ((const unsigned char *)tag)[i] ^ tag_buf[i]; in stm32_decrypt_aes_gcm()