| 358 | |
| 359 | template<typename T> |
| 360 | T* offset_ptr(void* base, size_t offset) |
| 361 | { |
| 362 | return reinterpret_cast<T*>(reinterpret_cast<char*>(base) + offset); |
| 363 | } |
| 364 | |
| 365 | static void HipFunctionGetParamSize(hipFunction_t func, size_t index, size_t* offset, size_t* size) |
| 366 | { |
nothing calls this directly
no outgoing calls
no test coverage detected