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

Method writeInt

unused/rangeencoder.cpp:281–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279}
280
281void RangeEncoder::writeInt(U32 sym)
282{
283 writeShort((U16)(sym % U16_MAX_PLUS_ONE)); // lower 16 bits
284 writeShort((U16)(sym / U16_MAX_PLUS_ONE)); // UPPER 16 bits
285}
286
287void RangeEncoder::writeInt64(U64 sym)
288{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected