Decode a byte without modelling */
| 182 | |
| 183 | /* Decode a byte without modelling */ |
| 184 | U8 RangeDecoder::readByte() |
| 185 | { |
| 186 | U8 tmp = culshift(8); |
| 187 | update(1, tmp, 1u<<8); |
| 188 | return tmp; |
| 189 | } |
| 190 | |
| 191 | /* Decode a short without modelling */ |
| 192 | U16 RangeDecoder::readShort() |
nothing calls this directly
no outgoing calls
no test coverage detected