Lines Matching refs:datar
431 u_int32_t datar; in Blowfish_expand0state() local
442 datar = 0x00000000; in Blowfish_expand0state()
444 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
447 c->P[i + 1] = datar; in Blowfish_expand0state()
452 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
455 c->S[i][k + 1] = datar; in Blowfish_expand0state()
470 u_int32_t datar; in Blowfish_expandstate() local
481 datar = 0x00000000; in Blowfish_expandstate()
484 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
485 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
488 c->P[i + 1] = datar; in Blowfish_expandstate()
494 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
495 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
498 c->S[i][k + 1] = datar; in Blowfish_expandstate()