Lines Matching refs:datal
441 uint32_t datal; in Blowfish_expand0state() local
452 datal = 0x00000000; in Blowfish_expand0state()
455 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
457 c->P[i] = datal; in Blowfish_expand0state()
463 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
465 c->S[i][k] = datal; in Blowfish_expand0state()
480 uint32_t datal; in Blowfish_expandstate() local
491 datal = 0x00000000; in Blowfish_expandstate()
494 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
496 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
498 c->P[i] = datal; in Blowfish_expandstate()
504 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
506 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
508 c->S[i][k] = datal; in Blowfish_expandstate()