Lines Matching refs:Xr
98 uint32_t Xl, Xr, temp; in blowfish_enc() local
102 Xr = *xr; in blowfish_enc()
107 Xr = F( ctx, Xl ) ^ Xr; in blowfish_enc()
110 Xl = Xr; in blowfish_enc()
111 Xr = temp; in blowfish_enc()
115 Xl = Xr; in blowfish_enc()
116 Xr = temp; in blowfish_enc()
118 Xr = Xr ^ ctx->P[MBEDTLS_BLOWFISH_ROUNDS]; in blowfish_enc()
122 *xr = Xr; in blowfish_enc()
127 uint32_t Xl, Xr, temp; in blowfish_dec() local
131 Xr = *xr; in blowfish_dec()
136 Xr = F( ctx, Xl ) ^ Xr; in blowfish_dec()
139 Xl = Xr; in blowfish_dec()
140 Xr = temp; in blowfish_dec()
144 Xl = Xr; in blowfish_dec()
145 Xr = temp; in blowfish_dec()
147 Xr = Xr ^ ctx->P[1]; in blowfish_dec()
151 *xr = Xr; in blowfish_dec()