| 310 | } |
| 311 | |
| 312 | void ArithmeticEncoder::writeDouble(F64 sym) /* danger in float reinterpretation */ |
| 313 | { |
| 314 | U64I64F64 u64i64f64; |
| 315 | u64i64f64.f64 = sym; |
| 316 | writeInt64(u64i64f64.u64); |
| 317 | } |
| 318 | |
| 319 | inline void ArithmeticEncoder::propagate_carry() |
| 320 | { |
nothing calls this directly
no outgoing calls
no test coverage detected