| 305 | } |
| 306 | |
| 307 | U32 ArithmeticDecoder::readInt() |
| 308 | { |
| 309 | U32 lowerInt = readShort(); |
| 310 | U32 upperInt = readShort(); |
| 311 | return (upperInt<<16)|lowerInt; |
| 312 | } |
| 313 | |
| 314 | F32 ArithmeticDecoder::readFloat() /* danger in float reinterpretation */ |
| 315 | { |
no outgoing calls
no test coverage detected