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

Function __hxcpp_memory_get_float

include/hx/StdLibs.h:686–688  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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}
689inline int __hxcpp_memory_get_i16(Array<unsigned char> inBuffer ,int addr) { return *(short *)(inBuffer->GetBase()+addr); }
690inline int __hxcpp_memory_get_i32(Array<unsigned char> inBuffer ,int addr) { return *(int *)(inBuffer->GetBase()+addr); }
691inline int __hxcpp_memory_get_ui16(Array<unsigned char> inBuffer ,int addr) { return *(unsigned short *)(inBuffer->GetBase()+addr); }

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected