Lines Matching refs:dst
55 const uint64_t src[2], uint64_t dst[2]) in encrypt_block()
61 memcpy(dst, buf_cryp, sizeof(state->buf_cryp)); in encrypt_block()
70 const uint8_t *src, size_t num_blocks, uint8_t *dst) in encrypt_pl() argument
77 void *d = dst + n * TEE_AES_BLOCK_SIZE; in encrypt_pl()
84 void *d = dst + n * TEE_AES_BLOCK_SIZE; in encrypt_pl()
94 const uint64_t src[2], uint64_t dst[2]) in decrypt_block()
104 memcpy(dst, buf_cryp, sizeof(state->buf_cryp)); in decrypt_block()
109 const uint8_t *src, size_t num_blocks, uint8_t *dst) in decrypt_pl() argument
116 void *d = dst + n * TEE_AES_BLOCK_SIZE; in decrypt_pl()
123 void *d = dst + n * TEE_AES_BLOCK_SIZE; in decrypt_pl()
135 size_t num_blocks, void *dst) in internal_aes_gcm_update_payload_blocks() argument
140 encrypt_pl(state, ek, src, num_blocks, dst); in internal_aes_gcm_update_payload_blocks()
142 decrypt_pl(state, ek, src, num_blocks, dst); in internal_aes_gcm_update_payload_blocks()