Lines Matching refs:round_key

1505 aes_round(v128_t *state, const v128_t *round_key) {  in aes_round()  argument
1523 state->v32[0] = column0 ^ round_key->v32[0]; in aes_round()
1524 state->v32[1] = column1 ^ round_key->v32[1]; in aes_round()
1525 state->v32[2] = column2 ^ round_key->v32[2]; in aes_round()
1526 state->v32[3] = column3 ^ round_key->v32[3]; in aes_round()
1532 aes_inv_round(v128_t *state, const v128_t *round_key) { in aes_inv_round() argument
1550 state->v32[0] = column0 ^ round_key->v32[0]; in aes_inv_round()
1551 state->v32[1] = column1 ^ round_key->v32[1]; in aes_inv_round()
1552 state->v32[2] = column2 ^ round_key->v32[2]; in aes_inv_round()
1553 state->v32[3] = column3 ^ round_key->v32[3]; in aes_inv_round()
1558 aes_final_round(v128_t *state, const v128_t *round_key) { in aes_final_round() argument
1590 v128_xor_eq(state, round_key); in aes_final_round()
1594 aes_inv_final_round(v128_t *state, const v128_t *round_key) { in aes_inv_final_round() argument
1626 v128_xor_eq(state, round_key); in aes_inv_final_round()
1633 aes_round(v128_t *state, const v128_t *round_key) { in aes_round() argument
1664 state->v32[0] = column0 ^ round_key->v32[0]; in aes_round()
1665 state->v32[1] = column1 ^ round_key->v32[1]; in aes_round()
1666 state->v32[2] = column2 ^ round_key->v32[2]; in aes_round()
1667 state->v32[3] = column3 ^ round_key->v32[3]; in aes_round()
1672 aes_inv_round(v128_t *state, const v128_t *round_key) { in aes_inv_round() argument
1705 state->v32[0] = column0 ^ round_key->v32[0]; in aes_inv_round()
1706 state->v32[1] = column1 ^ round_key->v32[1]; in aes_inv_round()
1707 state->v32[2] = column2 ^ round_key->v32[2]; in aes_inv_round()
1708 state->v32[3] = column3 ^ round_key->v32[3]; in aes_inv_round()
1713 aes_final_round(v128_t *state, const v128_t *round_key) { in aes_final_round() argument
1720 ^ round_key->v32[0]; in aes_final_round()
1726 ^ round_key->v32[1]; in aes_final_round()
1732 ^ round_key->v32[2]; in aes_final_round()
1738 ^ round_key->v32[3]; in aes_final_round()
1748 aes_inv_final_round(v128_t *state, const v128_t *round_key) { in aes_inv_final_round() argument
1755 ^ round_key->v32[0]; in aes_inv_final_round()
1761 ^ round_key->v32[1]; in aes_inv_final_round()
1767 ^ round_key->v32[2]; in aes_inv_final_round()
1773 ^ round_key->v32[3]; in aes_inv_final_round()
1785 aes_round(v128_t *state, const v128_t *round_key) { in aes_round() argument
1803 state->v32[0] = column0 ^ round_key->v32[0]; in aes_round()
1804 state->v32[1] = column1 ^ round_key->v32[1]; in aes_round()
1805 state->v32[2] = column2 ^ round_key->v32[2]; in aes_round()
1806 state->v32[3] = column3 ^ round_key->v32[3]; in aes_round()
1812 aes_inv_round(v128_t *state, const v128_t *round_key) { in aes_inv_round() argument
1830 state->v32[0] = column0 ^ round_key->v32[0]; in aes_inv_round()
1831 state->v32[1] = column1 ^ round_key->v32[1]; in aes_inv_round()
1832 state->v32[2] = column2 ^ round_key->v32[2]; in aes_inv_round()
1833 state->v32[3] = column3 ^ round_key->v32[3]; in aes_inv_round()
1838 aes_final_round(v128_t *state, const v128_t *round_key) { in aes_final_round() argument
1870 v128_xor_eq(state, round_key); in aes_final_round()
1874 aes_inv_final_round(v128_t *state, const v128_t *round_key) { in aes_inv_final_round() argument
1906 v128_xor_eq(state, round_key); in aes_inv_final_round()