Searched refs:bitsInRow (Results 1 – 1 of 1) sorted by relevance
223 …c void FragExtractLineFromBinaryMatrix( uint8_t* bitArray, uint16_t rowIndex, uint16_t bitsInRow );232 static void FragPushLineToBinaryMatrix( uint8_t *bitArray, uint16_t rowIndex, uint16_t bitsInRow );689 …ic void FragExtractLineFromBinaryMatrix( uint8_t* bitArray, uint16_t rowIndex, uint16_t bitsInRow ) in FragExtractLineFromBinaryMatrix() argument696 findByte = ( rowIndex * bitsInRow - ( ( rowIndex * ( rowIndex - 1 ) ) >> 1 ) ) >> 3; in FragExtractLineFromBinaryMatrix()697 findBitInByte = ( rowIndex * bitsInRow - ( ( rowIndex * ( rowIndex - 1 ) ) >> 1 ) ) % 8; in FragExtractLineFromBinaryMatrix()706 for( uint16_t i = rowIndex; i < bitsInRow; i++ ) in FragExtractLineFromBinaryMatrix()728 static void FragPushLineToBinaryMatrix( uint8_t *bitArray, uint16_t rowIndex, uint16_t bitsInRow ) in FragPushLineToBinaryMatrix() argument734 findByte = ( rowIndex * bitsInRow - ( ( rowIndex * ( rowIndex - 1 ) ) >> 1 ) ) >> 3; in FragPushLineToBinaryMatrix()735 findBitInByte = ( rowIndex * bitsInRow - ( ( rowIndex * ( rowIndex - 1 ) ) >> 1 ) ) % 8; in FragPushLineToBinaryMatrix()738 for( uint16_t i = rowIndex; i < bitsInRow; i++ ) in FragPushLineToBinaryMatrix()