Lines Matching refs:pI
177 const UINT32 * pI = (const UINT32 *)data; in KeccakP1600_AddLanes() local
185 memcpy(&low, pI++, 4); in KeccakP1600_AddLanes()
186 memcpy(&high, pI++, 4); in KeccakP1600_AddLanes()
189 toBitInterleavingAndXOR(*(pI++), *(pI++), *(pS++), *(pS++), t, x0, x1) in KeccakP1600_AddLanes()
233 const UINT32 * pI = (const UINT32 *)data; in KeccakP1600_OverwriteLanes() local
241 memcpy(&low, pI++, 4); in KeccakP1600_OverwriteLanes()
242 memcpy(&high, pI++, 4); in KeccakP1600_OverwriteLanes()
245 toBitInterleavingAndSet(*(pI++), *(pI++), *(pS++), *(pS++), t, x0, x1) in KeccakP1600_OverwriteLanes()
321 UINT32 * pI = (UINT32 *)data; in KeccakP1600_ExtractLanes() local
330 memcpy(pI++, &low, 4); in KeccakP1600_ExtractLanes()
331 memcpy(pI++, &high, 4); in KeccakP1600_ExtractLanes()
333 fromBitInterleaving(*(pS++), *(pS++), *(pI++), *(pI++), t, x0, x1) in KeccakP1600_ExtractLanes()
396 const UINT32 * pI = (const UINT32 *)input; in KeccakP1600_ExtractAndAddLanes() local
406 *(pO++) = *(pI++) ^ low; in KeccakP1600_ExtractAndAddLanes()
407 *(pO++) = *(pI++) ^ high; in KeccakP1600_ExtractAndAddLanes()
409 fromBitInterleavingAndXOR(*(pS++), *(pS++), *(pI++), *(pI++), *(pO++), *(pO++), t, x0, x1) in KeccakP1600_ExtractAndAddLanes()