Set memory region with given value Destination memory address. Must not be null, even if size is zero. Size of the memory to set in bytes Value to set
| 216 | /// <param name="size">Size of the memory to set in bytes</param> |
| 217 | /// <param name="value">Value to set</param> |
| 218 | FORCE_INLINE static void MemorySet(void* dst, uint64 size, int32 value) |
| 219 | { |
| 220 | memset(dst, value, static_cast<size_t>(size)); |
| 221 | } |
| 222 | |
| 223 | /// <summary> |
| 224 | /// Clear memory region with zeros |
no test coverage detected