Branch data Line data Source code
1 : : /* SPDX-License-Identifier: LGPL-2.1+ */ 2 : : #pragma once 3 : : 4 : : #include <endian.h> 5 : : #include <stdint.h> 6 : : 7 : : /* BE */ 8 : : 9 : 6104 : static inline uint16_t unaligned_read_be16(const void *_u) { 10 : 6104 : const struct __attribute__((__packed__, __may_alias__)) { uint16_t x; } *u = _u; 11 : : 12 : 6104 : return be16toh(u->x); 13 : : } 14 : : 15 : 2628 : static inline uint32_t unaligned_read_be32(const void *_u) { 16 : 2628 : const struct __attribute__((__packed__, __may_alias__)) { uint32_t x; } *u = _u; 17 : : 18 : 2628 : return be32toh(u->x); 19 : : } 20 : : 21 : 32 : static inline uint64_t unaligned_read_be64(const void *_u) { 22 : 32 : const struct __attribute__((__packed__, __may_alias__)) { uint64_t x; } *u = _u; 23 : : 24 : 32 : return be64toh(u->x); 25 : : } 26 : : 27 : 4084 : static inline void unaligned_write_be16(void *_u, uint16_t a) { 28 : 4084 : struct __attribute__((__packed__, __may_alias__)) { uint16_t x; } *u = _u; 29 : : 30 : 4084 : u->x = be16toh(a); 31 : 4084 : } 32 : : 33 : 1356 : static inline void unaligned_write_be32(void *_u, uint32_t a) { 34 : 1356 : struct __attribute__((__packed__, __may_alias__)) { uint32_t x; } *u = _u; 35 : : 36 : 1356 : u->x = be32toh(a); 37 : 1356 : } 38 : : 39 : 32 : static inline void unaligned_write_be64(void *_u, uint64_t a) { 40 : 32 : struct __attribute__((__packed__, __may_alias__)) { uint64_t x; } *u = _u; 41 : : 42 : 32 : u->x = be64toh(a); 43 : 32 : } 44 : : 45 : : /* LE */ 46 : : 47 : 12 : static inline uint16_t unaligned_read_le16(const void *_u) { 48 : 12 : const struct __attribute__((__packed__, __may_alias__)) { uint16_t x; } *u = _u; 49 : : 50 : 12 : return le16toh(u->x); 51 : : } 52 : : 53 : 20 : static inline uint32_t unaligned_read_le32(const void *_u) { 54 : 20 : const struct __attribute__((__packed__, __may_alias__)) { uint32_t x; } *u = _u; 55 : : 56 : 20 : return le32toh(u->x); 57 : : } 58 : : 59 : 258764606 : static inline uint64_t unaligned_read_le64(const void *_u) { 60 : 258764606 : const struct __attribute__((__packed__, __may_alias__)) { uint64_t x; } *u = _u; 61 : : 62 : 258764606 : return le64toh(u->x); 63 : : } 64 : : 65 : 12 : static inline void unaligned_write_le16(void *_u, uint16_t a) { 66 : 12 : struct __attribute__((__packed__, __may_alias__)) { uint16_t x; } *u = _u; 67 : : 68 : 12 : u->x = le16toh(a); 69 : 12 : } 70 : : 71 : 48 : static inline void unaligned_write_le32(void *_u, uint32_t a) { 72 : 48 : struct __attribute__((__packed__, __may_alias__)) { uint32_t x; } *u = _u; 73 : : 74 : 48 : u->x = le32toh(a); 75 : 48 : } 76 : : 77 : 95652 : static inline void unaligned_write_le64(void *_u, uint64_t a) { 78 : 95652 : struct __attribute__((__packed__, __may_alias__)) { uint64_t x; } *u = _u; 79 : : 80 : 95652 : u->x = le64toh(a); 81 : 95652 : } 82 : : 83 : : #if __BYTE_ORDER == __BIG_ENDIAN 84 : : #define unaligned_read_ne16 unaligned_read_be16 85 : : #define unaligned_read_ne32 unaligned_read_be32 86 : : #define unaligned_read_ne64 unaligned_read_be64 87 : : 88 : : #define unaligned_write_ne16 unaligned_write_be16 89 : : #define unaligned_write_ne32 unaligned_write_be32 90 : : #define unaligned_write_ne64 unaligned_write_be64 91 : : #else 92 : : #define unaligned_read_ne16 unaligned_read_le16 93 : : #define unaligned_read_ne32 unaligned_read_le32 94 : : #define unaligned_read_ne64 unaligned_read_le64 95 : : 96 : : #define unaligned_write_ne16 unaligned_write_le16 97 : : #define unaligned_write_ne32 unaligned_write_le32 98 : : #define unaligned_write_ne64 unaligned_write_le64 99 : : #endif