Decode an unsigned int without modelling */
| 198 | |
| 199 | /* Decode an unsigned int without modelling */ |
| 200 | U32 RangeDecoder::readInt() |
| 201 | { |
| 202 | U32 lowerInt = readShort(); |
| 203 | U32 upperInt = readShort(); |
| 204 | return upperInt*U16_MAX_PLUS_ONE+lowerInt; |
| 205 | } |
| 206 | |
| 207 | /* Decode a float without modelling */ |
| 208 | F32 RangeDecoder::readFloat() |
nothing calls this directly
no outgoing calls
no test coverage detected