| 279 | } |
| 280 | |
| 281 | void RangeEncoder::writeInt(U32 sym) |
| 282 | { |
| 283 | writeShort((U16)(sym % U16_MAX_PLUS_ONE)); // lower 16 bits |
| 284 | writeShort((U16)(sym / U16_MAX_PLUS_ONE)); // UPPER 16 bits |
| 285 | } |
| 286 | |
| 287 | void RangeEncoder::writeInt64(U64 sym) |
| 288 | { |
nothing calls this directly
no outgoing calls
no test coverage detected