MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / readBigEndianInt64

Method readBigEndianInt64

include/cpp/marshal/Marshal.hpp:223–230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

221}
222
223inline int64_t cpp::marshal::Marshal::readBigEndianInt64(const View<uint8_t>& view)
224{
225#ifdef HXCPP_BIG_ENDIAN
226 return readInt64(view);
227#else
228 return reverse(readInt64(view));
229#endif
230}
231
232inline uint16_t cpp::marshal::Marshal::readBigEndianUInt16(const View<uint8_t>& view)
233{

Callers

nothing calls this directly

Calls 1

reverseFunction · 0.70

Tested by

no test coverage detected