| 1343 | } |
| 1344 | |
| 1345 | unsigned int Integer::ByteCount() const |
| 1346 | { |
| 1347 | unsigned wordCount = WordCount(); |
| 1348 | if (wordCount) |
| 1349 | return (wordCount-1)*WORD_SIZE + BytePrecision(reg[wordCount-1]); |
| 1350 | else |
| 1351 | return 0; |
| 1352 | } |
| 1353 | |
| 1354 | unsigned int Integer::BitCount() const |
| 1355 | { |
no test coverage detected