Lines Matching refs:datal
398 u_int32_t datal; in Blowfish_expand0state() local
409 datal = 0x00000000; in Blowfish_expand0state()
412 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
414 c->P[i] = datal; in Blowfish_expand0state()
420 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
422 c->S[i][k] = datal; in Blowfish_expand0state()
436 u_int32_t datal; in Blowfish_expandstate() local
447 datal = 0x00000000; in Blowfish_expandstate()
450 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
452 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
454 c->P[i] = datal; in Blowfish_expandstate()
460 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
462 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
464 c->S[i][k] = datal; in Blowfish_expandstate()