Home | History | Annotate | Download | only in common

Lines Matching refs:cook

112 	register unsigned long *cook, *raw0;
116 cook = dough;
119 *cook = (*raw0 & 0x00fc0000L) << 6;
120 *cook |= (*raw0 & 0x00000fc0L) << 10;
121 *cook |= (*raw1 & 0x00fc0000L) >> 10;
122 *cook++ |= (*raw1 & 0x00000fc0L) >> 6;
123 *cook = (*raw0 & 0x0003f000L) << 12;
124 *cook |= (*raw0 & 0x0000003fL) << 16;
125 *cook |= (*raw1 & 0x0003f000L) >> 4;
126 *cook++ |= (*raw1 & 0x0000003fL);