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

Method readInt64

unused/rangedecoder.cpp:216–221  ·  view source on GitHub ↗

Decode an unsigned 64 bit int without modelling */

Source from the content-addressed store, hash-verified

214
215/* Decode an unsigned 64 bit int without modelling */
216U64 RangeDecoder::readInt64()
217{
218 U64 lowerInt = readInt();
219 U64 upperInt = readInt();
220 return upperInt*U32_MAX_PLUS_ONE+lowerInt;
221}
222
223/* Decode a double without modelling */
224F64 RangeDecoder::readDouble()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected