Decode an unsigned 64 bit int without modelling */
| 214 | |
| 215 | /* Decode an unsigned 64 bit int without modelling */ |
| 216 | U64 RangeDecoder::readInt64() |
| 217 | { |
| 218 | U64 lowerInt = readInt(); |
| 219 | U64 upperInt = readInt(); |
| 220 | return upperInt*U32_MAX_PLUS_ONE+lowerInt; |
| 221 | } |
| 222 | |
| 223 | /* Decode a double without modelling */ |
| 224 | F64 RangeDecoder::readDouble() |
nothing calls this directly
no outgoing calls
no test coverage detected