Lines Matching refs:Xr
297 #define F(Xl, Xr, P) \ argument
298 Xr ^=((( ctx->s[0][ Xl >> 24 ] \
347 uint32_t Xl, Xr; in av_blowfish_crypt_ecb() local
351 Xr = *xr; in av_blowfish_crypt_ecb()
356 F(Xl, Xr, ctx->p[i ]); in av_blowfish_crypt_ecb()
357 F(Xr, Xl, ctx->p[i-1]); in av_blowfish_crypt_ecb()
360 Xr ^= ctx->p[0]; in av_blowfish_crypt_ecb()
364 F(Xl, Xr, ctx->p[i ]); in av_blowfish_crypt_ecb()
365 F(Xr, Xl, ctx->p[i+1]); in av_blowfish_crypt_ecb()
368 Xr ^= ctx->p[AV_BF_ROUNDS + 1]; in av_blowfish_crypt_ecb()
371 *xl = Xr; in av_blowfish_crypt_ecb()