| 696 | |
| 697 | inline void __hxcpp_memory_set_byte(Array<unsigned char> inBuffer ,int addr,int v) { inBuffer->GetBase()[addr] = v; } |
| 698 | inline void __hxcpp_memory_set_double(Array<unsigned char> inBuffer ,int addr,double v) { |
| 699 | return __hxcpp_align_set_float64((unsigned char *)inBuffer->GetBase(), addr,v); |
| 700 | } |
| 701 | inline void __hxcpp_memory_set_float(Array<unsigned char> inBuffer ,int addr,float v) { |
| 702 | return __hxcpp_align_set_float32((unsigned char *)inBuffer->GetBase(), addr,v); |
| 703 | } |
no test coverage detected