Lines Matching refs:datal
430 u_int32_t datal; in Blowfish_expand0state() local
441 datal = 0x00000000; in Blowfish_expand0state()
444 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
446 c->P[i] = datal; in Blowfish_expand0state()
452 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
454 c->S[i][k] = datal; in Blowfish_expand0state()
469 u_int32_t datal; in Blowfish_expandstate() local
480 datal = 0x00000000; in Blowfish_expandstate()
483 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
485 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
487 c->P[i] = datal; in Blowfish_expandstate()
493 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
495 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
497 c->S[i][k] = datal; in Blowfish_expandstate()