Lines Matching refs:out
266 void aes_encrypt(const struct crypto_aes_ctx *ctx, u8 *out, const u8 *in) in aes_encrypt() argument
275 trace_android_vh_aes_encrypt(ctx, out, in, &hook_inuse); in aes_encrypt()
311 put_unaligned_le32(subshift(st1, 0) ^ rkp[4], out); in aes_encrypt()
312 put_unaligned_le32(subshift(st1, 1) ^ rkp[5], out + 4); in aes_encrypt()
313 put_unaligned_le32(subshift(st1, 2) ^ rkp[6], out + 8); in aes_encrypt()
314 put_unaligned_le32(subshift(st1, 3) ^ rkp[7], out + 12); in aes_encrypt()
324 void aes_decrypt(const struct crypto_aes_ctx *ctx, u8 *out, const u8 *in) in aes_decrypt() argument
333 trace_android_vh_aes_decrypt(ctx, out, in, &hook_inuse); in aes_decrypt()
369 put_unaligned_le32(inv_subshift(st1, 0) ^ rkp[4], out); in aes_decrypt()
370 put_unaligned_le32(inv_subshift(st1, 1) ^ rkp[5], out + 4); in aes_decrypt()
371 put_unaligned_le32(inv_subshift(st1, 2) ^ rkp[6], out + 8); in aes_decrypt()
372 put_unaligned_le32(inv_subshift(st1, 3) ^ rkp[7], out + 12); in aes_decrypt()