Lines Matching defs:in
6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
35 /* Copy a 16-byte AES block from "in" to "out" */
37 aes_copy_block(uint8_t *in, uint8_t *out)
39 if (IS_P2ALIGNED2(in, out, sizeof (uint32_t))) {
41 *(uint32_t *)&out[0] = *(uint32_t *)&in[0];
43 *(uint32_t *)&out[4] = *(uint32_t *)&in[4];
45 *(uint32_t *)&out[8] = *(uint32_t *)&in[8];
47 *(uint32_t *)&out[12] = *(uint32_t *)&in[12];
49 AES_COPY_BLOCK(in, out);