| 691 | inline int __hxcpp_memory_get_ui16(Array<unsigned char> inBuffer ,int addr) { return *(unsigned short *)(inBuffer->GetBase()+addr); } |
| 692 | inline int __hxcpp_memory_get_ui32(Array<unsigned char> inBuffer ,int addr) { return *(unsigned int *)(inBuffer->GetBase()+addr); } |
| 693 | inline float __hxcpp_memory_get_f32(Array<unsigned char> inBuffer ,int addr) { |
| 694 | return __hxcpp_align_get_float32((unsigned char *)inBuffer->GetBase(), addr); |
| 695 | } |
| 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) { |
nothing calls this directly
no test coverage detected