sPyNNaker neural_modelling 7.3.1
|
Utility functions for working with memory. More...
#include <common-typedefs.h>
Go to the source code of this file.
Functions | |
static void | fast_memcpy (void *restrict to, const void *restrict from, size_t num_bytes) |
A small and fast version of memcpy() . | |
Utility functions for working with memory.
Definition in file common_mem.h.
|
inlinestatic |
A small and fast version of memcpy()
.
Both pointers must be aligned and a whole number of words must be being copied. The areas of memory must not overlap.
[out] | to | Where to copy to. Must be word-aligned. |
[in] | from | Where to copy from. Must be word-aligned. |
[in] | num_bytes | The number of bytes to copy. Must be a multiple of 4. |
Definition at line 33 of file common_mem.h.