| 312 | } |
| 313 | |
| 314 | F32 ArithmeticDecoder::readFloat() /* danger in float reinterpretation */ |
| 315 | { |
| 316 | U32I32F32 u32i32f32; |
| 317 | u32i32f32.u32 = readInt(); |
| 318 | return u32i32f32.f32; |
| 319 | } |
| 320 | |
| 321 | U64 ArithmeticDecoder::readInt64() |
| 322 | { |
nothing calls this directly
no outgoing calls
no test coverage detected