Lines Matching refs:lane

96     UINT64 lane;  in KeccakP1600_AddBytesInLane()  local
100 lane = data[0]; in KeccakP1600_AddBytesInLane()
102 lane = 0; in KeccakP1600_AddBytesInLane()
103 memcpy(&lane, data, length); in KeccakP1600_AddBytesInLane()
105 lane <<= offset*8; in KeccakP1600_AddBytesInLane()
107 UINT64 lane = 0; in KeccakP1600_AddBytesInLane()
110 lane |= ((UINT64)data[i]) << ((i+offset)*8); in KeccakP1600_AddBytesInLane()
112 ((UINT64*)state)[lanePosition] ^= lane; in KeccakP1600_AddBytesInLane()
160 UINT64 lane = (UINT64)curData[0] in KeccakP1600_AddLanes()
168 ((UINT64*)state)[i] ^= lane; in KeccakP1600_AddLanes()
178 UINT64 lane = byte; in KeccakP1600_AddByte() local
179 lane <<= (offset%8)*8; in KeccakP1600_AddByte()
180 ((UINT64*)state)[offset/8] ^= lane; in KeccakP1600_AddByte()
316 UINT64 lane = ((UINT64*)state)[lanePosition]; in KeccakP1600_ExtractBytesInLane() local
319 lane = ~lane; in KeccakP1600_ExtractBytesInLane()
324 lane1[0] = lane; in KeccakP1600_ExtractBytesInLane()
329 lane >>= offset*8; in KeccakP1600_ExtractBytesInLane()
331 data[i] = lane & 0xFF; in KeccakP1600_ExtractBytesInLane()
332 lane >>= 8; in KeccakP1600_ExtractBytesInLane()
392 UINT64 lane = ((UINT64*)state)[lanePosition]; in KeccakP1600_ExtractAndAddBytesInLane() local
395 lane = ~lane; in KeccakP1600_ExtractAndAddBytesInLane()
401 lane1[0] = lane; in KeccakP1600_ExtractAndAddBytesInLane()
407 lane >>= offset*8; in KeccakP1600_ExtractAndAddBytesInLane()
409 output[i] = input[i] ^ (lane & 0xFF); in KeccakP1600_ExtractAndAddBytesInLane()
410 lane >>= 8; in KeccakP1600_ExtractAndAddBytesInLane()