Home | History | Annotate | Download | only in camellia

Lines Matching refs:t8

72 		u8  t8 [CAMELLIA_BLOCK_SIZE]; } tmp;
130 memcpy(tmp.t8, in, CAMELLIA_BLOCK_SIZE);
137 out[n] = tmp.t8[n] ^ iv[n];
146 memcpy(tmp.t8, in, CAMELLIA_BLOCK_SIZE);
153 memcpy(ivec, tmp.t8, CAMELLIA_BLOCK_SIZE);
160 memcpy(tmp.t8, in, CAMELLIA_BLOCK_SIZE);
169 out[n] = tmp.t8[n];
170 memcpy(ivec, tmp.t8, CAMELLIA_BLOCK_SIZE);
181 tmp.t8[n] = in[n] ^ iv[n];
187 memcpy(out, tmp.t8, CAMELLIA_BLOCK_SIZE);
196 tmp.t8[n] = in[n] ^ iv[n];
198 tmp.t8[n] = iv[n];
204 memcpy(out, tmp.t8, CAMELLIA_BLOCK_SIZE);
213 memcpy(tmp.t8,in,CAMELLIA_BLOCK_SIZE);
220 out[n] = tmp.t8[n] ^ iv[n];
228 memcpy(tmp.t8, in, CAMELLIA_BLOCK_SIZE);
235 out[n] = tmp.t8[n] ^ iv[n];
244 memcpy(tmp.t8, in, CAMELLIA_BLOCK_SIZE);
251 tmp.t8[n] ^= ivec[n];
253 memcpy(out, tmp.t8, CAMELLIA_BLOCK_SIZE);
260 memcpy(tmp.t8, in, CAMELLIA_BLOCK_SIZE);
267 tmp.t8[n] ^= ivec[n];
269 memcpy(out,tmp.t8,len);