Lines Matching refs:Xl
73 u_int32_t Xl; in Blowfish_encipher() local
78 Xl = *xl; in Blowfish_encipher()
81 Xl ^= p[0]; 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()
92 *xr = Xl; in Blowfish_encipher()
98 u_int32_t Xl; in Blowfish_decipher() local
103 Xl = *xl; in Blowfish_decipher()
106 Xl ^= p[17]; 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()
117 *xr = Xl; in Blowfish_decipher()