pollution: x static __inline __uint32_t __byte_swap_u32_variable(__uint32_t x) { __asm volatile ( "bswap %1" : "=r" (x) : "0" (x)); return (x); } pollution: x static __inline __uint16_t __byte_swap_u16_variable(__uint16_t x) { __asm volatile ("rorw $8, %w1" : "=r" (x) : "0" (x)); return (x); } pollution: bswap16 __uint16_t bswap16(__uint16_t) __asm("__bswap16") __attribute__((__const__)); pollution: bswap32 __uint32_t bswap32(__uint32_t) __asm("__bswap32") __attribute__((__const__)); pollution: bswap64 __uint64_t bswap64(__uint64_t) __attribute__((__const__)); pollution: dst pollution: u pollution: be16enc static __inline __attribute__((__unused__)) void be16enc(void *dst, __uint16_t u) { u = ((__uint16_t)(__builtin_constant_p((((__uint16_t)((u))))) ? (((__uint16_t)(((((((__uint16_t)((u)))) & 0xff00) >> 8) | (((((__uint16_t)((u)))) & 0x00ff) << 8))))) : __byte_swap_u16_variable(((__uint16_t)((u)))))); __builtin_memcpy(dst, &u, sizeof(u)); } pollution: dst pollution: u pollution: be32enc static __inline __attribute__((__unused__)) void be32enc(void *dst, __uint32_t u) { u = ((__uint32_t)(__builtin_constant_p((((__uint32_t)((u))))) ? (((__uint32_t)(((((((__uint32_t)((u)))) & 0xff000000) >> 24) | (((((__uint32_t)((u)))) & 0x00ff0000) >> 8) | (((((__uint32_t)((u)))) & 0x0000ff00) << 8) | (((((__uint32_t)((u)))) & 0x000000ff) << 24))))) : __byte_swap_u32_variable(((__uint32_t)((u)))))); __builtin_memcpy(dst, &u, sizeof(u)); } pollution: dst pollution: u pollution: be64enc static __inline __attribute__((__unused__)) void be64enc(void *dst, __uint64_t u) { u = ((__uint64_t)(__builtin_constant_p((((__uint64_t)((u))))) ? (((__uint64_t)(((((((__uint64_t)((u)))) & 0xff00000000000000ull) >> 56) | (((((__uint64_t)((u)))) & 0x00ff000000000000ull) >> 40) | (((((__uint64_t)((u)))) & 0x0000ff0000000000ull) >> 24) | (((((__uint64_t)((u)))) & 0x000000ff00000000ull) >> 8) | (((((__uint64_t)((u)))) & 0x00000000ff000000ull) << 8) | (((((__uint64_t)((u)))) & 0x0000000000ff0000ull) << 24) | (((((__uint64_t)((u)))) & 0x000000000000ff00ull) << 40) | (((((__uint64_t)((u)))) & 0x00000000000000ffull) << 56))))) : bswap64(((__uint64_t)((u)))))); __builtin_memcpy(dst, &u, sizeof(u)); } pollution: dst pollution: u pollution: le16enc static __inline __attribute__((__unused__)) void le16enc(void *dst, __uint16_t u) { u = (u); __builtin_memcpy(dst, &u, sizeof(u)); } pollution: dst pollution: u pollution: le32enc static __inline __attribute__((__unused__)) void le32enc(void *dst, __uint32_t u) { u = (u); __builtin_memcpy(dst, &u, sizeof(u)); } pollution: dst pollution: u pollution: le64enc static __inline __attribute__((__unused__)) void le64enc(void *dst, __uint64_t u) { u = (u); __builtin_memcpy(dst, &u, sizeof(u)); } pollution: buf pollution: be16dec static __inline __attribute__((__unused__)) __uint16_t be16dec(const void *buf) { __uint16_t u; __builtin_memcpy(&u, buf, sizeof(u)); return ((__uint16_t)(__builtin_constant_p((((__uint16_t)((u))))) ? (((__uint16_t)(((((((__uint16_t)((u)))) & 0xff00) >> 8) | (((((__uint16_t)((u)))) & 0x00ff) << 8))))) : __byte_swap_u16_variable(((__uint16_t)((u)))))); } pollution: buf pollution: be32dec static __inline __attribute__((__unused__)) __uint32_t be32dec(const void *buf) { __uint32_t u; __builtin_memcpy(&u, buf, sizeof(u)); return ((__uint32_t)(__builtin_constant_p((((__uint32_t)((u))))) ? (((__uint32_t)(((((((__uint32_t)((u)))) & 0xff000000) >> 24) | (((((__uint32_t)((u)))) & 0x00ff0000) >> 8) | (((((__uint32_t)((u)))) & 0x0000ff00) << 8) | (((((__uint32_t)((u)))) & 0x000000ff) << 24))))) : __byte_swap_u32_variable(((__uint32_t)((u)))))); } pollution: buf pollution: be64dec static __inline __attribute__((__unused__)) __uint64_t be64dec(const void *buf) { __uint64_t u; __builtin_memcpy(&u, buf, sizeof(u)); return ((__uint64_t)(__builtin_constant_p((((__uint64_t)((u))))) ? (((__uint64_t)(((((((__uint64_t)((u)))) & 0xff00000000000000ull) >> 56) | (((((__uint64_t)((u)))) & 0x00ff000000000000ull) >> 40) | (((((__uint64_t)((u)))) & 0x0000ff0000000000ull) >> 24) | (((((__uint64_t)((u)))) & 0x000000ff00000000ull) >> 8) | (((((__uint64_t)((u)))) & 0x00000000ff000000ull) << 8) | (((((__uint64_t)((u)))) & 0x0000000000ff0000ull) << 24) | (((((__uint64_t)((u)))) & 0x000000000000ff00ull) << 40) | (((((__uint64_t)((u)))) & 0x00000000000000ffull) << 56))))) : bswap64(((__uint64_t)((u)))))); } pollution: buf pollution: le16dec static __inline __attribute__((__unused__)) __uint16_t le16dec(const void *buf) { __uint16_t u; __builtin_memcpy(&u, buf, sizeof(u)); return (u); } pollution: buf pollution: le32dec static __inline __attribute__((__unused__)) __uint32_t le32dec(const void *buf) { __uint32_t u; __builtin_memcpy(&u, buf, sizeof(u)); return (u); } pollution: buf pollution: le64dec static __inline __attribute__((__unused__)) __uint64_t le64dec(const void *buf) { __uint64_t u; __builtin_memcpy(&u, buf, sizeof(u)); return (u); } pollution: ipi_addr struct in_addr ipi_addr; pollution: ipi_ifindex unsigned int ipi_ifindex; pollution: imr_multiaddr struct in_addr imr_multiaddr; pollution: imr_interface struct in_addr imr_interface; pollution: af_name char af_name[16]; pollution: af_arg char af_arg[256-16]; pollution: accept_filter_arg struct accept_filter_arg { char af_name[16]; char af_arg[256-16]; }; pollution: paccept int paccept(int, struct sockaddr * restrict, __socklen_t * restrict, const sigset_t * restrict, int); pollution: ipi6_addr struct in6_addr ipi6_addr; pollution: ipi6_ifindex unsigned int ipi6_ifindex; pollution: ip6m_addr struct sockaddr_in6 ip6m_addr; pollution: ip6m_mtu __uint32_t ip6m_mtu; pollution: ip6_mtuinfo struct ip6_mtuinfo { struct sockaddr_in6 ip6m_addr; __uint32_t ip6m_mtu; }; pollution: BE16TOH #define BE16TOH(x) HTOBE16(x) pollution: BE32TOH #define BE32TOH(x) HTOBE32(x) pollution: BE64TOH #define BE64TOH(x) HTOBE64(x) pollution: BIG_ENDIAN #define BIG_ENDIAN 4321 pollution: BYTE_ORDER #define BYTE_ORDER _BYTE_ORDER pollution: CCMSG_DATA #define CCMSG_DATA(cmsg) (__CASTCV(const u_char *, cmsg) + __CMSG_ASIZE) pollution: CTL_IPPROTO_IPSEC #define CTL_IPPROTO_IPSEC 258 pollution: HTOBE16 #define HTOBE16(x) (x) = bswap16(__CAST(uint16_t, (x))) pollution: HTOBE32 #define HTOBE32(x) (x) = bswap32(__CAST(uint32_t, (x))) pollution: HTOBE64 #define HTOBE64(x) (x) = bswap64(__CAST(uint64_t, (x))) pollution: HTOLE16 #define HTOLE16(x) __CAST(void, (x)) pollution: HTOLE32 #define HTOLE32(x) __CAST(void, (x)) pollution: HTOLE64 #define HTOLE64(x) __CAST(void, (x)) pollution: HTONL #define HTONL(x) (x) = htonl(__CAST(uint32_t, (x))) pollution: HTONS #define HTONS(x) (x) = htons(__CAST(uint16_t, (x))) pollution: IN6ADDR_LINKLOCAL_ALLNODES_INIT #define IN6ADDR_LINKLOCAL_ALLNODES_INIT {{{ 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}} pollution: IN6ADDR_LINKLOCAL_ALLROUTERS_INIT #define IN6ADDR_LINKLOCAL_ALLROUTERS_INIT {{{ 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 }}} pollution: IN6ADDR_NODELOCAL_ALLNODES_INIT #define IN6ADDR_NODELOCAL_ALLNODES_INIT {{{ 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}} pollution: LE16TOH #define LE16TOH(x) HTOLE16(x) pollution: LE32TOH #define LE32TOH(x) HTOLE32(x) pollution: LE64TOH #define LE64TOH(x) HTOLE64(x) pollution: LITTLE_ENDIAN #define LITTLE_ENDIAN 1234 pollution: NTOHL #define NTOHL(x) (x) = ntohl(__CAST(uint32_t, (x))) pollution: NTOHS #define NTOHS(x) (x) = ntohs(__CAST(uint16_t, (x))) pollution: PDP_ENDIAN #define PDP_ENDIAN 3412 pollution: be16toh #define be16toh(x) htobe16(x) pollution: be32toh #define be32toh(x) htobe32(x) pollution: be64toh #define be64toh(x) htobe64(x) pollution: bswap16 #define bswap16(x) __CAST(uint16_t, __builtin_constant_p((x)) ? __byte_swap_u16_constant(x) : __BYTE_SWAP_U16_VARIABLE(x)) pollution: bswap32 #define bswap32(x) __CAST(uint32_t, __builtin_constant_p((x)) ? __byte_swap_u32_constant(x) : __BYTE_SWAP_U32_VARIABLE(x)) pollution: bswap64 #define bswap64(x) __CAST(uint64_t, __builtin_constant_p((x)) ? __byte_swap_u64_constant(x) : __BYTE_SWAP_U64_VARIABLE(x)) pollution: htobe16 #define htobe16(x) bswap16(__CAST(uint16_t, (x))) pollution: htobe32 #define htobe32(x) bswap32(__CAST(uint32_t, (x))) pollution: htobe64 #define htobe64(x) bswap64(__CAST(uint64_t, (x))) pollution: htole16 #define htole16(x) (x) pollution: htole32 #define htole32(x) (x) pollution: htole64 #define htole64(x) (x) pollution: le16toh #define le16toh(x) htole16(x) pollution: le32toh #define le32toh(x) htole32(x) pollution: le64toh #define le64toh(x) htole64(x) pollution: sstocsa #define sstocsa(__ss) ((const struct sockaddr *)(__ss)) pollution: sstosa #define sstosa(__ss) ((struct sockaddr *)(__ss))