| 297 | } |
| 298 | |
| 299 | void ArithmeticEncoder::writeFloat(F32 sym) /* danger in float reinterpretation */ |
| 300 | { |
| 301 | U32I32F32 u32i32f32; |
| 302 | u32i32f32.f32 = sym; |
| 303 | writeInt(u32i32f32.u32); |
| 304 | } |
| 305 | |
| 306 | void ArithmeticEncoder::writeInt64(U64 sym) |
| 307 | { |
nothing calls this directly
no outgoing calls
no test coverage detected