| 64 | } |
| 65 | |
| 66 | void CppCPU::Free(void* ptr) { |
| 67 | if (ptr != nullptr) free(ptr); |
| 68 | } |
| 69 | |
| 70 | void CppCPU::CopyToFrom(void* dst, const void* src, size_t nBytes, |
| 71 | CopyDirection direction, Context* ctx) { |
nothing calls this directly
no outgoing calls
no test coverage detected