Home | History | Annotate | Download | only in tables

Lines Matching refs:curByte

205 	for curByte in data:
206 value = byteord(curByte)
221 curByte = 0
223 curByte = curByte << 1
225 curByte |= 1
226 byteList.append(bytechr(curByte))
527 curByte = _reverseBytes(self.imageData[firstByteLoc])
528 firstHalf = byteord(curByte) >> cutPoint
532 curByte = _reverseBytes(self.imageData[secondByteLoc])
533 secondHalf = byteord(curByte) << numBitsCut
556 for curBit, curByte in zip(range(*stepRange), data):
565 curByte = byteord(curByte)
566 firstByte = curByte & ((1<<numBitsCut)-1)
569 secondByte = (curByte >> numBitsCut) & ((1<<8-numBitsCut)-1)