Decode a short without modelling */
| 190 | |
| 191 | /* Decode a short without modelling */ |
| 192 | U16 RangeDecoder::readShort() |
| 193 | { |
| 194 | unsigned short tmp = culshift(16); |
| 195 | update(1, tmp, 1u<<16); |
| 196 | return tmp; |
| 197 | } |
| 198 | |
| 199 | /* Decode an unsigned int without modelling */ |
| 200 | U32 RangeDecoder::readInt() |
nothing calls this directly
no outgoing calls
no test coverage detected