Lines Matching refs:datar
442 uint32_t datar; in Blowfish_expand0state() local
453 datar = 0x00000000; in Blowfish_expand0state()
455 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
458 c->P[i + 1] = datar; in Blowfish_expand0state()
463 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
466 c->S[i][k + 1] = datar; in Blowfish_expand0state()
481 uint32_t datar; in Blowfish_expandstate() local
492 datar = 0x00000000; in Blowfish_expandstate()
495 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
496 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
499 c->P[i + 1] = datar; in Blowfish_expandstate()
505 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
506 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
509 c->S[i][k + 1] = datar; in Blowfish_expandstate()