Decode a float without modelling */
| 206 | |
| 207 | /* Decode a float without modelling */ |
| 208 | F32 RangeDecoder::readFloat() |
| 209 | { |
| 210 | U32F32 u32f32; |
| 211 | u32f32.u32 = readInt(); |
| 212 | return u32f32.f32; |
| 213 | } |
| 214 | |
| 215 | /* Decode an unsigned 64 bit int without modelling */ |
| 216 | U64 RangeDecoder::readInt64() |
nothing calls this directly
no outgoing calls
no test coverage detected