| 706 | inline void __hxcpp_memory_set_ui16(Array<unsigned char> inBuffer ,int addr,int v) { *(unsigned short *)(inBuffer->GetBase()+addr) = v; } |
| 707 | inline void __hxcpp_memory_set_ui32(Array<unsigned char> inBuffer ,int addr,int v) { *(unsigned int *)(inBuffer->GetBase()+addr) = v; } |
| 708 | inline 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... |
nothing calls this directly
no test coverage detected