Symbol: LE32
sys/crypto/twofish/twofish.c
437
a = LE32(((const u_int32_t *)in_key)[i + i]); me_key[i] = a;
sys/crypto/twofish/twofish.c
438
b = LE32(((const u_int32_t *)in_key)[i + i + 1]); mo_key[i] = b;
sys/crypto/twofish/twofish.c
472
blk[0] = LE32(((const u_int32_t *)in_blk)[0]) ^ l_key[0];
sys/crypto/twofish/twofish.c
473
blk[1] = LE32(((const u_int32_t *)in_blk)[1]) ^ l_key[1];
sys/crypto/twofish/twofish.c
474
blk[2] = LE32(((const u_int32_t *)in_blk)[2]) ^ l_key[2];
sys/crypto/twofish/twofish.c
475
blk[3] = LE32(((const u_int32_t *)in_blk)[3]) ^ l_key[3];
sys/crypto/twofish/twofish.c
480
((u_int32_t *)out_blk)[0] = LE32(blk[2] ^ l_key[4]);
sys/crypto/twofish/twofish.c
481
((u_int32_t *)out_blk)[1] = LE32(blk[3] ^ l_key[5]);
sys/crypto/twofish/twofish.c
482
((u_int32_t *)out_blk)[2] = LE32(blk[0] ^ l_key[6]);
sys/crypto/twofish/twofish.c
483
((u_int32_t *)out_blk)[3] = LE32(blk[1] ^ l_key[7]);
sys/crypto/twofish/twofish.c
503
blk[0] = LE32(((const u_int32_t *)in_blk)[0]) ^ l_key[4];
sys/crypto/twofish/twofish.c
504
blk[1] = LE32(((const u_int32_t *)in_blk)[1]) ^ l_key[5];
sys/crypto/twofish/twofish.c
505
blk[2] = LE32(((const u_int32_t *)in_blk)[2]) ^ l_key[6];
sys/crypto/twofish/twofish.c
506
blk[3] = LE32(((const u_int32_t *)in_blk)[3]) ^ l_key[7];
sys/crypto/twofish/twofish.c
511
((u_int32_t *)out_blk)[0] = LE32(blk[2] ^ l_key[0]);
sys/crypto/twofish/twofish.c
512
((u_int32_t *)out_blk)[1] = LE32(blk[3] ^ l_key[1]);
sys/crypto/twofish/twofish.c
513
((u_int32_t *)out_blk)[2] = LE32(blk[0] ^ l_key[2]);
sys/crypto/twofish/twofish.c
514
((u_int32_t *)out_blk)[3] = LE32(blk[1] ^ l_key[3]);