Home
last modified time | relevance | path

Searched refs:bitsInRow (Results 1 – 1 of 1) sorted by relevance

/loramac-node-latest/src/apps/LoRaMac/common/LmHandler/packages/
DFragDecoder.c223 …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() argument
696 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() argument
734 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()