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

Function __hxcpp_memory_get_double

include/hx/StdLibs.h:683–685  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

681
682inline int __hxcpp_memory_get_byte(Array<unsigned char> inBuffer ,int addr) { return inBuffer->GetBase()[addr]; }
683inline double __hxcpp_memory_get_double(Array<unsigned char> inBuffer ,int addr) {
684 return __hxcpp_align_get_float64((unsigned char *)inBuffer->GetBase(), addr);
685}
686inline float __hxcpp_memory_get_float(Array<unsigned char> inBuffer ,int addr) {
687 return __hxcpp_align_get_float32((unsigned char *)inBuffer->GetBase(), addr);
688}

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected