HomeSort by: relevance | last modified time | path
    Searched defs:cook (Results 1 - 1 of 1) sorted by relevancy

  /src/external/bsd/wpa/dist/src/crypto/
des-internal.c 251 u32 *cook; local
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)
    [all...]

Completed in 24 milliseconds