| 285 | } |
| 286 | |
| 287 | void RangeEncoder::writeInt64(U64 sym) |
| 288 | { |
| 289 | writeInt((U32)(sym % U32_MAX_PLUS_ONE)); // lower 32 bits |
| 290 | writeInt((U32)(sym / U32_MAX_PLUS_ONE)); // UPPER 32 bits |
| 291 | } |
| 292 | |
| 293 | void RangeEncoder::writeFloat(F32 sym) |
| 294 | { |
nothing calls this directly
no outgoing calls
no test coverage detected