Home | History | Annotate | Download | only in ciphers

Lines Matching refs:cook

1371     ulong32 *cook;
1376 cook = dough;
1380 *cook = (*raw0 & 0x00fc0000L) << 6;
1381 *cook |= (*raw0 & 0x00000fc0L) << 10;
1382 *cook |= (*raw1 & 0x00fc0000L) >> 10;
1383 *cook++ |= (*raw1 & 0x00000fc0L) >> 6;
1384 *cook = (*raw0 & 0x0003f000L) << 12;
1385 *cook |= (*raw0 & 0x0000003fL) << 16;
1386 *cook |= (*raw1 & 0x0003f000L) >> 4;
1387 *cook++ |= (*raw1 & 0x0000003fL);