| 1250 | } |
| 1251 | |
| 1252 | void Integer::SetByte(unsigned int n, byte value) |
| 1253 | { |
| 1254 | reg.CleanGrow(RoundupSize(bytesToWords(n+1))); |
| 1255 | reg[n/WORD_SIZE] &= ~(word(0xff) << 8*(n%WORD_SIZE)); |
| 1256 | reg[n/WORD_SIZE] |= (word(value) << 8*(n%WORD_SIZE)); |
| 1257 | } |
| 1258 | |
| 1259 | Integer Integer::operator-() const |
| 1260 | { |
nothing calls this directly
no test coverage detected