Lines Matching refs:pI
172 const UINT32 * pI = (const UINT32 *)data; in KeccakP1600_AddLanes() local
180 memcpy(&low, pI++, 4); in KeccakP1600_AddLanes()
181 memcpy(&high, pI++, 4); in KeccakP1600_AddLanes()
184 toBitInterleavingAndXOR(*(pI++), *(pI++), *(pS++), *(pS++), t, x0, x1) in KeccakP1600_AddLanes()
228 const UINT32 * pI = (const UINT32 *)data; in KeccakP1600_OverwriteLanes() local
236 memcpy(&low, pI++, 4); in KeccakP1600_OverwriteLanes()
237 memcpy(&high, pI++, 4); in KeccakP1600_OverwriteLanes()
240 toBitInterleavingAndSet(*(pI++), *(pI++), *(pS++), *(pS++), t, x0, x1) in KeccakP1600_OverwriteLanes()
316 UINT32 * pI = (UINT32 *)data; in KeccakP1600_ExtractLanes() local
325 memcpy(pI++, &low, 4); in KeccakP1600_ExtractLanes()
326 memcpy(pI++, &high, 4); in KeccakP1600_ExtractLanes()
328 fromBitInterleaving(*(pS++), *(pS++), *(pI++), *(pI++), t, x0, x1) in KeccakP1600_ExtractLanes()
390 const UINT32 * pI = (const UINT32 *)input; in KeccakP1600_ExtractAndAddLanes() local
400 *(pO++) = *(pI++) ^ low; in KeccakP1600_ExtractAndAddLanes()
401 *(pO++) = *(pI++) ^ high; in KeccakP1600_ExtractAndAddLanes()
403 fromBitInterleavingAndXOR(*(pS++), *(pS++), *(pI++), *(pI++), *(pO++), *(pO++), t, x0, x1) in KeccakP1600_ExtractAndAddLanes()