Lines Matching refs:Xl

76 	u_int32_t Xl;  in Blowfish_encipher()  local
81 Xl = *xl; in Blowfish_encipher()
84 Xl ^= p[0]; in Blowfish_encipher()
85 BLFRND(s, p, Xr, Xl, 1); BLFRND(s, p, Xl, Xr, 2); in Blowfish_encipher()
86 BLFRND(s, p, Xr, Xl, 3); BLFRND(s, p, Xl, Xr, 4); in Blowfish_encipher()
87 BLFRND(s, p, Xr, Xl, 5); BLFRND(s, p, Xl, Xr, 6); in Blowfish_encipher()
88 BLFRND(s, p, Xr, Xl, 7); BLFRND(s, p, Xl, Xr, 8); in Blowfish_encipher()
89 BLFRND(s, p, Xr, Xl, 9); BLFRND(s, p, Xl, Xr, 10); in Blowfish_encipher()
90 BLFRND(s, p, Xr, Xl, 11); BLFRND(s, p, Xl, Xr, 12); in Blowfish_encipher()
91 BLFRND(s, p, Xr, Xl, 13); BLFRND(s, p, Xl, Xr, 14); in Blowfish_encipher()
92 BLFRND(s, p, Xr, Xl, 15); BLFRND(s, p, Xl, Xr, 16); in Blowfish_encipher()
95 *xr = Xl; in Blowfish_encipher()
101 u_int32_t Xl; in Blowfish_decipher() local
106 Xl = *xl; in Blowfish_decipher()
109 Xl ^= p[17]; in Blowfish_decipher()
110 BLFRND(s, p, Xr, Xl, 16); BLFRND(s, p, Xl, Xr, 15); in Blowfish_decipher()
111 BLFRND(s, p, Xr, Xl, 14); BLFRND(s, p, Xl, Xr, 13); in Blowfish_decipher()
112 BLFRND(s, p, Xr, Xl, 12); BLFRND(s, p, Xl, Xr, 11); in Blowfish_decipher()
113 BLFRND(s, p, Xr, Xl, 10); BLFRND(s, p, Xl, Xr, 9); in Blowfish_decipher()
114 BLFRND(s, p, Xr, Xl, 8); BLFRND(s, p, Xl, Xr, 7); in Blowfish_decipher()
115 BLFRND(s, p, Xr, Xl, 6); BLFRND(s, p, Xl, Xr, 5); in Blowfish_decipher()
116 BLFRND(s, p, Xr, Xl, 4); BLFRND(s, p, Xl, Xr, 3); in Blowfish_decipher()
117 BLFRND(s, p, Xr, Xl, 2); BLFRND(s, p, Xl, Xr, 1); in Blowfish_decipher()
120 *xr = Xl; in Blowfish_decipher()