Lines Matching full:t
77 unsigned int t; in tc_aes128_set_encrypt_key() local
91 t = s->words[i-1]; in tc_aes128_set_encrypt_key()
93 t = subword(rotword(t)) ^ rconst[i/Nk]; in tc_aes128_set_encrypt_key()
95 s->words[i] = s->words[i-Nk] ^ t; in tc_aes128_set_encrypt_key()
134 uint8_t t[Nb*Nk]; in mix_columns() local
136 mult_row_column(t, s); in mix_columns()
137 mult_row_column(&t[Nb], s+Nb); in mix_columns()
138 mult_row_column(&t[2 * Nb], s + (2 * Nb)); in mix_columns()
139 mult_row_column(&t[3 * Nb], s + (3 * Nb)); in mix_columns()
140 (void) _copy(s, sizeof(t), t, sizeof(t)); in mix_columns()
149 uint8_t t[Nb * Nk]; in shift_rows() local
151 t[0] = s[0]; t[1] = s[5]; t[2] = s[10]; t[3] = s[15]; in shift_rows()
152 t[4] = s[4]; t[5] = s[9]; t[6] = s[14]; t[7] = s[3]; in shift_rows()
153 t[8] = s[8]; t[9] = s[13]; t[10] = s[2]; t[11] = s[7]; in shift_rows()
154 t[12] = s[12]; t[13] = s[1]; t[14] = s[6]; t[15] = s[11]; in shift_rows()
155 (void) _copy(s, sizeof(t), t, sizeof(t)); in shift_rows()