* Need to implement in other source file. */
| 184 | * Need to implement in other source file. |
| 185 | */ |
| 186 | HOSTDEVICE static inline void PD_Free(void *ptr, size_t size UNUSED) { |
| 187 | free(ptr); |
| 188 | } |
| 189 | |
| 190 | HOSTDEVICE static inline void *PD_Memset(void *src, int ch, size_t size) { |
| 191 | char *dst = (char *)src; // NOLINT |
no test coverage detected