The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | /*- |
| 2 | * Copyright (c) 1997 Niklas Hallqvist. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 14 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 15 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 16 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 17 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 18 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 19 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 20 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 21 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 22 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 23 | */ |
| 24 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 25 | #ifndef _SYS_ENDIAN_H_ |
| 26 | #define _SYS_ENDIAN_H_ |
| 27 | |
| 28 | #include <sys/cdefs.h> |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 29 | |
Elliott Hughes | 135b103 | 2014-05-13 18:42:12 -0700 | [diff] [blame] | 30 | #include <stdint.h> |
| 31 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 32 | #define _LITTLE_ENDIAN 1234 |
| 33 | #define _BIG_ENDIAN 4321 |
| 34 | #define _PDP_ENDIAN 3412 |
Elliott Hughes | 56e0173 | 2014-12-08 20:32:11 -0800 | [diff] [blame^] | 35 | #define _BYTE_ORDER _LITTLE_ENDIAN |
| 36 | #define __LITTLE_ENDIAN_BITFIELD |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 37 | |
| 38 | #if __BSD_VISIBLE |
Elliott Hughes | 56e0173 | 2014-12-08 20:32:11 -0800 | [diff] [blame^] | 39 | #define LITTLE_ENDIAN _LITTLE_ENDIAN |
| 40 | #define BIG_ENDIAN _BIG_ENDIAN |
| 41 | #define PDP_ENDIAN _PDP_ENDIAN |
| 42 | #define BYTE_ORDER _BYTE_ORDER |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 43 | #endif |
| 44 | |
Elliott Hughes | 56e0173 | 2014-12-08 20:32:11 -0800 | [diff] [blame^] | 45 | #ifndef __LITTLE_ENDIAN |
| 46 | #define __LITTLE_ENDIAN _LITTLE_ENDIAN |
| 47 | #endif |
| 48 | #ifndef __BIG_ENDIAN |
| 49 | #define __BIG_ENDIAN _BIG_ENDIAN |
| 50 | #endif |
| 51 | #define __BYTE_ORDER _BYTE_ORDER |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 52 | |
Elliott Hughes | 56e0173 | 2014-12-08 20:32:11 -0800 | [diff] [blame^] | 53 | #define __swap16 __builtin_bswap16 |
| 54 | #define __swap32 __builtin_bswap32 |
| 55 | #define __swap64 __builtin_bswap64 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 56 | |
| 57 | #if __BSD_VISIBLE |
| 58 | #define swap16 __swap16 |
| 59 | #define swap32 __swap32 |
| 60 | #define swap64 __swap64 |
| 61 | #define swap16_multi __swap16_multi |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 62 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 63 | #define htobe16 __swap16 |
| 64 | #define htobe32 __swap32 |
| 65 | #define htobe64 __swap64 |
| 66 | #define betoh16 __swap16 |
| 67 | #define betoh32 __swap32 |
| 68 | #define betoh64 __swap64 |
| 69 | |
| 70 | #define htole16(x) (x) |
| 71 | #define htole32(x) (x) |
| 72 | #define htole64(x) (x) |
| 73 | #define letoh16(x) (x) |
| 74 | #define letoh32(x) (x) |
| 75 | #define letoh64(x) (x) |
| 76 | #endif /* __BSD_VISIBLE */ |
| 77 | |
Elliott Hughes | 6a41b0f | 2014-05-13 16:05:51 -0700 | [diff] [blame] | 78 | /* glibc compatibility. */ |
| 79 | __BEGIN_DECLS |
| 80 | uint32_t htonl(uint32_t) __pure2; |
| 81 | uint16_t htons(uint16_t) __pure2; |
| 82 | uint32_t ntohl(uint32_t) __pure2; |
| 83 | uint16_t ntohs(uint16_t) __pure2; |
| 84 | __END_DECLS |
| 85 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 86 | #define htonl(x) __swap32(x) |
Elliott Hughes | 6a41b0f | 2014-05-13 16:05:51 -0700 | [diff] [blame] | 87 | #define htons(x) __swap16(x) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 88 | #define ntohl(x) __swap32(x) |
Elliott Hughes | 6a41b0f | 2014-05-13 16:05:51 -0700 | [diff] [blame] | 89 | #define ntohs(x) __swap16(x) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 90 | |
| 91 | /* Bionic additions */ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 92 | #define htonq(x) __swap64(x) |
Elliott Hughes | 6a41b0f | 2014-05-13 16:05:51 -0700 | [diff] [blame] | 93 | #define ntohq(x) __swap64(x) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 94 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 95 | #if __BSD_VISIBLE |
| 96 | #define NTOHL(x) (x) = ntohl((u_int32_t)(x)) |
| 97 | #define NTOHS(x) (x) = ntohs((u_int16_t)(x)) |
| 98 | #define HTONL(x) (x) = htonl((u_int32_t)(x)) |
| 99 | #define HTONS(x) (x) = htons((u_int16_t)(x)) |
| 100 | #endif |
| 101 | |
Elliott Hughes | cf820d7 | 2013-02-22 11:01:17 -0800 | [diff] [blame] | 102 | #ifdef __BSD_VISIBLE |
| 103 | /* |
| 104 | * glibc-compatible beXXtoh/leXXtoh synonyms for htobeXX/htoleXX. |
| 105 | * The BSDs export both sets of names, bionic historically only |
| 106 | * exported the ones above (or on the rhs here), and glibc only |
| 107 | * exports these names (on the lhs). |
| 108 | */ |
| 109 | #define be16toh(x) htobe16(x) |
| 110 | #define be32toh(x) htobe32(x) |
| 111 | #define be64toh(x) htobe64(x) |
| 112 | #define le16toh(x) htole16(x) |
| 113 | #define le32toh(x) htole32(x) |
| 114 | #define le64toh(x) htole64(x) |
| 115 | #endif |
| 116 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 117 | #endif /* _SYS_ENDIAN_H_ */ |