Lines Matching refs:Xr
74 u_int32_t Xr; in Blowfish_encipher() local
79 Xr = *xr; in Blowfish_encipher()
82 BLFRND(s, p, Xr, Xl, 1); BLFRND(s, p, Xl, Xr, 2); in Blowfish_encipher()
83 BLFRND(s, p, Xr, Xl, 3); BLFRND(s, p, Xl, Xr, 4); in Blowfish_encipher()
84 BLFRND(s, p, Xr, Xl, 5); BLFRND(s, p, Xl, Xr, 6); in Blowfish_encipher()
85 BLFRND(s, p, Xr, Xl, 7); BLFRND(s, p, Xl, Xr, 8); in Blowfish_encipher()
86 BLFRND(s, p, Xr, Xl, 9); BLFRND(s, p, Xl, Xr, 10); in Blowfish_encipher()
87 BLFRND(s, p, Xr, Xl, 11); BLFRND(s, p, Xl, Xr, 12); in Blowfish_encipher()
88 BLFRND(s, p, Xr, Xl, 13); BLFRND(s, p, Xl, Xr, 14); in Blowfish_encipher()
89 BLFRND(s, p, Xr, Xl, 15); BLFRND(s, p, Xl, Xr, 16); in Blowfish_encipher()
91 *xl = Xr ^ p[17]; in Blowfish_encipher()
99 u_int32_t Xr; in Blowfish_decipher() local
104 Xr = *xr; in Blowfish_decipher()
107 BLFRND(s, p, Xr, Xl, 16); BLFRND(s, p, Xl, Xr, 15); in Blowfish_decipher()
108 BLFRND(s, p, Xr, Xl, 14); BLFRND(s, p, Xl, Xr, 13); in Blowfish_decipher()
109 BLFRND(s, p, Xr, Xl, 12); BLFRND(s, p, Xl, Xr, 11); in Blowfish_decipher()
110 BLFRND(s, p, Xr, Xl, 10); BLFRND(s, p, Xl, Xr, 9); in Blowfish_decipher()
111 BLFRND(s, p, Xr, Xl, 8); BLFRND(s, p, Xl, Xr, 7); in Blowfish_decipher()
112 BLFRND(s, p, Xr, Xl, 6); BLFRND(s, p, Xl, Xr, 5); in Blowfish_decipher()
113 BLFRND(s, p, Xr, Xl, 4); BLFRND(s, p, Xl, Xr, 3); in Blowfish_decipher()
114 BLFRND(s, p, Xr, Xl, 2); BLFRND(s, p, Xl, Xr, 1); in Blowfish_decipher()
116 *xl = Xr ^ p[0]; in Blowfish_decipher()