Lines Matching refs:datar
399 u_int32_t datar; in Blowfish_expand0state() local
410 datar = 0x00000000; in Blowfish_expand0state()
412 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
415 c->P[i + 1] = datar; in Blowfish_expand0state()
420 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
423 c->S[i][k + 1] = datar; in Blowfish_expand0state()
437 u_int32_t datar; in Blowfish_expandstate() local
448 datar = 0x00000000; in Blowfish_expandstate()
451 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
452 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
455 c->P[i + 1] = datar; in Blowfish_expandstate()
461 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
462 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
465 c->S[i][k + 1] = datar; in Blowfish_expandstate()