MCPcopy Create free account
hub / github.com/LASzip/LASzip / readInt

Method readInt

unused/rangedecoder.cpp:200–205  ·  view source on GitHub ↗

Decode an unsigned int without modelling */

Source from the content-addressed store, hash-verified

198
199/* Decode an unsigned int without modelling */
200U32 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 */
208F32 RangeDecoder::readFloat()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected