DPDK
2.0.0
|
#include <stdint.h>
#include <endian.h>
Functions | |
static uint16_t | rte_bswap16 (uint16_t _x) |
static uint32_t | rte_bswap32 (uint32_t x) |
static uint64_t | rte_bswap64 (uint64_t x) |
static uint16_t | rte_cpu_to_le_16 (uint16_t x) |
static uint32_t | rte_cpu_to_le_32 (uint32_t x) |
static uint64_t | rte_cpu_to_le_64 (uint64_t x) |
static uint16_t | rte_cpu_to_be_16 (uint16_t x) |
static uint32_t | rte_cpu_to_be_32 (uint32_t x) |
static uint64_t | rte_cpu_to_be_64 (uint64_t x) |
static uint16_t | rte_le_to_cpu_16 (uint16_t x) |
static uint32_t | rte_le_to_cpu_32 (uint32_t x) |
static uint64_t | rte_le_to_cpu_64 (uint64_t x) |
static uint16_t | rte_be_to_cpu_16 (uint16_t x) |
static uint32_t | rte_be_to_cpu_32 (uint32_t x) |
static uint64_t | rte_be_to_cpu_64 (uint64_t x) |
Byte Swap Operations
This file defines a generic API for byte swap operations. Part of the implementation is architecture-specific.
|
static |
Convert a 16-bit value from big endian to CPU order.
|
static |
Convert a 32-bit value from big endian to CPU order.
|
static |
Convert a 64-bit value from big endian to CPU order.
|
static |
Swap bytes in a 16-bit value.
|
static |
Swap bytes in a 32-bit value.
|
static |
Swap bytes in a 64-bit value.
|
static |
Convert a 16-bit value from CPU order to big endian.
|
static |
Convert a 32-bit value from CPU order to big endian.
|
static |
Convert a 64-bit value from CPU order to big endian.
|
static |
Convert a 16-bit value from CPU order to little endian.
|
static |
Convert a 32-bit value from CPU order to little endian.
|
static |
Convert a 64-bit value from CPU order to little endian.
|
static |
Convert a 16-bit value from little endian to CPU order.
|
static |
Convert a 32-bit value from little endian to CPU order.
|
static |
Convert a 64-bit value from little endian to CPU order.