Lines Matching refs:d
29 #define keyiter(a, b, c, d, i, j) \ argument
30 ({ b ^= d; b ^= c; b ^= a; b ^= PHI ^ i; b = rol32(b, 11); k[j] = b; })
457 __le32 *d = (__le32 *)dst; in __serpent_encrypt() local
504 d[0] = cpu_to_le32(r0); in __serpent_encrypt()
505 d[1] = cpu_to_le32(r1); in __serpent_encrypt()
506 d[2] = cpu_to_le32(r2); in __serpent_encrypt()
507 d[3] = cpu_to_le32(r3); in __serpent_encrypt()
523 __le32 *d = (__le32 *)dst; in __serpent_decrypt() local
565 d[0] = cpu_to_le32(r2); in __serpent_decrypt()
566 d[1] = cpu_to_le32(r3); in __serpent_decrypt()
567 d[2] = cpu_to_le32(r1); in __serpent_decrypt()
568 d[3] = cpu_to_le32(r4); in __serpent_decrypt()
594 u32 * const d = (u32 * const)dst; in tnepres_encrypt() local
605 d[0] = swab32(rd[3]); in tnepres_encrypt()
606 d[1] = swab32(rd[2]); in tnepres_encrypt()
607 d[2] = swab32(rd[1]); in tnepres_encrypt()
608 d[3] = swab32(rd[0]); in tnepres_encrypt()
614 u32 * const d = (u32 * const)dst; in tnepres_decrypt() local
625 d[0] = swab32(rd[3]); in tnepres_decrypt()
626 d[1] = swab32(rd[2]); in tnepres_decrypt()
627 d[2] = swab32(rd[1]); in tnepres_decrypt()
628 d[3] = swab32(rd[0]); in tnepres_decrypt()