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

Method writeInt64

unused/rangeencoder.cpp:287–291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

285}
286
287void RangeEncoder::writeInt64(U64 sym)
288{
289 writeInt((U32)(sym % U32_MAX_PLUS_ONE)); // lower 32 bits
290 writeInt((U32)(sym / U32_MAX_PLUS_ONE)); // UPPER 32 bits
291}
292
293void RangeEncoder::writeFloat(F32 sym)
294{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected