Decode a double without modelling */
| 222 | |
| 223 | /* Decode a double without modelling */ |
| 224 | F64 RangeDecoder::readDouble() |
| 225 | { |
| 226 | U64F64 u64f64; |
| 227 | u64f64.u64 = readInt64(); |
| 228 | return u64f64.f64; |
| 229 | } |
| 230 | |
| 231 | U32 RangeDecoder::culshift(U32 shift) |
| 232 | { |
nothing calls this directly
no outgoing calls
no test coverage detected