Go to the source code of this file.
Functions |
static void | rte_mov16 (uint8_t *dst, const uint8_t *src) |
static void | rte_mov32 (uint8_t *dst, const uint8_t *src) |
static void | rte_mov48 (uint8_t *dst, const uint8_t *src) |
static void | rte_mov64 (uint8_t *dst, const uint8_t *src) |
static void | rte_mov128 (uint8_t *dst, const uint8_t *src) |
static void | rte_mov256 (uint8_t *dst, const uint8_t *src) |
static void * | rte_memcpy (void *dst, const void *src, size_t n) |
Detailed Description
Functions for vectorised implementation of memcpy().
Definition in file rte_memcpy.h.
Function Documentation
static void rte_mov16 |
( |
uint8_t * |
dst, |
|
|
const uint8_t * |
src |
|
) |
| |
|
inlinestatic |
Copy 16 bytes from one location to another using optimised instructions. The locations should not overlap.
- Parameters
-
dst | Pointer to the destination of the data. |
src | Pointer to the source data. |
static void rte_mov32 |
( |
uint8_t * |
dst, |
|
|
const uint8_t * |
src |
|
) |
| |
|
inlinestatic |
Copy 32 bytes from one location to another using optimised instructions. The locations should not overlap.
- Parameters
-
dst | Pointer to the destination of the data. |
src | Pointer to the source data. |
static void rte_mov48 |
( |
uint8_t * |
dst, |
|
|
const uint8_t * |
src |
|
) |
| |
|
inlinestatic |
Copy 48 bytes from one location to another using optimised instructions. The locations should not overlap.
- Parameters
-
dst | Pointer to the destination of the data. |
src | Pointer to the source data. |
static void rte_mov64 |
( |
uint8_t * |
dst, |
|
|
const uint8_t * |
src |
|
) |
| |
|
inlinestatic |
Copy 64 bytes from one location to another using optimised instructions. The locations should not overlap.
- Parameters
-
dst | Pointer to the destination of the data. |
src | Pointer to the source data. |
static void rte_mov128 |
( |
uint8_t * |
dst, |
|
|
const uint8_t * |
src |
|
) |
| |
|
inlinestatic |
Copy 128 bytes from one location to another using optimised instructions. The locations should not overlap.
- Parameters
-
dst | Pointer to the destination of the data. |
src | Pointer to the source data. |
static void rte_mov256 |
( |
uint8_t * |
dst, |
|
|
const uint8_t * |
src |
|
) |
| |
|
inlinestatic |
Copy 256 bytes from one location to another using optimised instructions. The locations should not overlap.
- Parameters
-
dst | Pointer to the destination of the data. |
src | Pointer to the source data. |
static void* rte_memcpy |
( |
void * |
dst, |
|
|
const void * |
src, |
|
|
size_t |
n |
|
) |
| |
|
static |