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

Method writeInt64

LASzip/src/arithmeticencoder.cpp:306–310  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

304}
305
306void ArithmeticEncoder::writeInt64(U64 sym)
307{
308 writeInt((U32)(sym & 0xFFFFFFFF)); // lower 32 bits
309 writeInt((U32)(sym >> 32)); // UPPER 32 bits
310}
311
312void ArithmeticEncoder::writeDouble(F64 sym) /* danger in float reinterpretation */
313{

Callers 3

writeMethod · 0.45
writeMethod · 0.45
writeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected