Lines Matching refs:datal
428 u_int32_t datal; in Blowfish_expand0state() local
439 datal = 0x00000000; in Blowfish_expand0state()
442 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
444 c->P[i] = datal; in Blowfish_expand0state()
450 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
452 c->S[i][k] = datal; in Blowfish_expand0state()
467 u_int32_t datal; in Blowfish_expandstate() local
478 datal = 0x00000000; in Blowfish_expandstate()
481 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
483 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
485 c->P[i] = datal; in Blowfish_expandstate()
491 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
493 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
495 c->S[i][k] = datal; in Blowfish_expandstate()