Lines Matching refs:src
251 src and dest are pointers to 4 UInt32 words.
252 src and dest can point to same block */
255 static void Aes_Encode(const UInt32 *w, UInt32 *dest, const UInt32 *src)
261 s[0] = src[0] ^ w[0];
262 s[1] = src[1] ^ w[1];
263 s[2] = src[2] ^ w[2];
264 s[3] = src[3] ^ w[3];
282 static void Aes_Decode(const UInt32 *w, UInt32 *dest, const UInt32 *src)
288 s[0] = src[0] ^ w[0];
289 s[1] = src[1] ^ w[1];
290 s[2] = src[2] ^ w[2];
291 s[3] = src[3] ^ w[3];