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

Function __hxcpp_memory_set_f32

include/hx/StdLibs.h:708–710  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

706inline void __hxcpp_memory_set_ui16(Array<unsigned char> inBuffer ,int addr,int v) { *(unsigned short *)(inBuffer->GetBase()+addr) = v; }
707inline void __hxcpp_memory_set_ui32(Array<unsigned char> inBuffer ,int addr,int v) { *(unsigned int *)(inBuffer->GetBase()+addr) = v; }
708inline void __hxcpp_memory_set_f32(Array<unsigned char> inBuffer ,int addr,float v) {
709 return __hxcpp_align_set_float32((unsigned char *)inBuffer->GetBase(), addr, v);
710}
711
712
713// Uses global pointer...

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected