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