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

Method put64bitsBE

src/bytestreamout_array.hpp:223–234  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

221}
222
223inline BOOL ByteStreamOutArrayLE::put64bitsBE(const U8* bytes)
224{
225 swapped[0] = bytes[7];
226 swapped[1] = bytes[6];
227 swapped[2] = bytes[5];
228 swapped[3] = bytes[4];
229 swapped[4] = bytes[3];
230 swapped[5] = bytes[2];
231 swapped[6] = bytes[1];
232 swapped[7] = bytes[0];
233 return putBytes(swapped, 8);
234}
235
236inline ByteStreamOutArrayBE::ByteStreamOutArrayBE(I64 alloc) : ByteStreamOutArray(alloc)
237{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected