| 681 | |
| 682 | inline int __hxcpp_memory_get_byte(Array<unsigned char> inBuffer ,int addr) { return inBuffer->GetBase()[addr]; } |
| 683 | inline double __hxcpp_memory_get_double(Array<unsigned char> inBuffer ,int addr) { |
| 684 | return __hxcpp_align_get_float64((unsigned char *)inBuffer->GetBase(), addr); |
| 685 | } |
| 686 | inline float __hxcpp_memory_get_float(Array<unsigned char> inBuffer ,int addr) { |
| 687 | return __hxcpp_align_get_float32((unsigned char *)inBuffer->GetBase(), addr); |
| 688 | } |
nothing calls this directly
no test coverage detected