Home
last modified time | relevance | path

Searched refs:cook (Results 1 – 1 of 1) sorted by relevance

/hostap-latest/src/crypto/
Ddes-internal.c251 u32 *cook; in cookey() local
256 cook = dough; in cookey()
259 *cook = (*raw0 & 0x00fc0000L) << 6; in cookey()
260 *cook |= (*raw0 & 0x00000fc0L) << 10; in cookey()
261 *cook |= (*raw1 & 0x00fc0000L) >> 10; in cookey()
262 *cook++ |= (*raw1 & 0x00000fc0L) >> 6; in cookey()
263 *cook = (*raw0 & 0x0003f000L) << 12; in cookey()
264 *cook |= (*raw0 & 0x0000003fL) << 16; in cookey()
265 *cook |= (*raw1 & 0x0003f000L) >> 4; in cookey()
266 *cook++ |= (*raw1 & 0x0000003fL); in cookey()