| 298 | } |
| 299 | |
| 300 | void RangeEncoder::writeDouble(F64 sym) |
| 301 | { |
| 302 | U64F64 u64f64; |
| 303 | u64f64.f64 = sym; |
| 304 | writeInt64(u64f64.u64); |
| 305 | } |
| 306 | |
| 307 | /* I do the normalization before I need a defined state instead of */ |
| 308 | /* after messing it up. This simplifies starting and ending. */ |
nothing calls this directly
no outgoing calls
no test coverage detected