Home | History | Annotate | Download | only in crypto

Lines Matching refs:cook

251 	u32 *cook;
256 cook = dough;
259 *cook = (*raw0 & 0x00fc0000L) << 6;
260 *cook |= (*raw0 & 0x00000fc0L) << 10;
261 *cook |= (*raw1 & 0x00fc0000L) >> 10;
262 *cook++ |= (*raw1 & 0x00000fc0L) >> 6;
263 *cook = (*raw0 & 0x0003f000L) << 12;
264 *cook |= (*raw0 & 0x0000003fL) << 16;
265 *cook |= (*raw1 & 0x0003f000L) >> 4;
266 *cook++ |= (*raw1 & 0x0000003fL);