| 1352 | } |
| 1353 | |
| 1354 | unsigned int Integer::BitCount() const |
| 1355 | { |
| 1356 | unsigned wordCount = WordCount(); |
| 1357 | if (wordCount) |
| 1358 | return (wordCount-1)*WORD_BITS + BitPrecision(reg[wordCount-1]); |
| 1359 | else |
| 1360 | return 0; |
| 1361 | } |
| 1362 | |
| 1363 | void Integer::Decode(const byte *input, unsigned int inputLen, Signedness s) |
| 1364 | { |
no test coverage detected