pollution: iov_base void *iov_base; pollution: iov_len size_t iov_len; pollution: iovec struct iovec { void *iov_base; size_t iov_len; }; pollution: iovec pollution: readv ssize_t readv(int, const struct iovec *, int); pollution: iovec pollution: writev ssize_t writev(int, const struct iovec *, int); pollution: l_onoff int l_onoff; pollution: l_linger int l_linger; pollution: linger struct linger { int l_onoff; int l_linger; }; 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: sockaddr struct sockaddr { __uint8_t sa_len; __sa_family_t sa_family; char sa_data[14]; }; pollution: sockaddr_storage struct sockaddr_storage { __uint8_t ss_len; __sa_family_t ss_family; char __ss_pad1[((sizeof(__int64_t)) - 2)]; __int64_t __ss_align; char __ss_pad2[(128 - 2 - ((sizeof(__int64_t)) - 2) - (sizeof(__int64_t)))]; }; pollution: msg_name void *msg_name; pollution: msg_namelen __socklen_t msg_namelen; pollution: iovec pollution: msg_iov struct iovec *msg_iov; pollution: msg_iovlen int msg_iovlen; pollution: msg_control void *msg_control; pollution: msg_controllen __socklen_t msg_controllen; pollution: msg_flags int msg_flags; pollution: msghdr struct msghdr { void *msg_name; __socklen_t msg_namelen; struct iovec *msg_iov; int msg_iovlen; void *msg_control; __socklen_t msg_controllen; int msg_flags; }; pollution: cmsg_len __socklen_t cmsg_len; pollution: cmsg_level int cmsg_level; pollution: cmsg_type int cmsg_type; pollution: cmsghdr struct cmsghdr { __socklen_t cmsg_len; int cmsg_level; int cmsg_type; }; pollution: sockaddr pollution: accept int accept(int, struct sockaddr * restrict, __socklen_t * restrict); pollution: sockaddr pollution: bind int bind(int, const struct sockaddr *, __socklen_t); pollution: sockaddr pollution: connect int connect(int, const struct sockaddr *, __socklen_t); pollution: sockaddr pollution: getpeername int getpeername(int, struct sockaddr * restrict, __socklen_t * restrict); pollution: sockaddr pollution: getsockname int getsockname(int, struct sockaddr * restrict, __socklen_t * restrict); pollution: getsockopt int getsockopt(int, int, int, void *restrict, __socklen_t * restrict); pollution: listen int listen(int, int); pollution: sockaddr pollution: paccept int paccept(int, struct sockaddr * restrict, __socklen_t * restrict, const sigset_t * restrict, int); pollution: recv ssize_t recv(int, void *, size_t, int); pollution: sockaddr pollution: recvfrom ssize_t recvfrom(int, void *restrict, size_t, int, struct sockaddr * restrict, __socklen_t * restrict); pollution: msghdr pollution: recvmsg ssize_t recvmsg(int, struct msghdr *, int); pollution: send ssize_t send(int, const void *, size_t, int); pollution: sockaddr pollution: sendto ssize_t sendto(int, const void *, size_t, int, const struct sockaddr *, __socklen_t); pollution: msghdr pollution: sendmsg ssize_t sendmsg(int, const struct msghdr *, int); pollution: setsockopt int setsockopt(int, int, int, const void *, __socklen_t); pollution: shutdown int shutdown(int, int); pollution: sockatmark int sockatmark(int); pollution: socket int socket(int, int, int) __asm("__socket30") ; pollution: socketpair int socketpair(int, int, int, int *); pollution: htonl __uint32_t htonl(__uint32_t) __attribute__((__const__)); pollution: htons __uint16_t htons(__uint16_t) __attribute__((__const__)); pollution: ntohl __uint32_t ntohl(__uint32_t) __attribute__((__const__)); pollution: ntohs __uint16_t ntohs(__uint16_t) __attribute__((__const__)); 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: itimerval struct itimerval { struct timeval it_interval; struct timeval it_value; }; pollution: asctime_r char *asctime_r(const struct tm * restrict, char * restrict); pollution: ctime_r char *ctime_r(const time_t *, char *) __asm("__ctime_r50"); pollution: itimerval pollution: getitimer int getitimer(int, struct itimerval *) __asm("__getitimer50"); pollution: gettimeofday int gettimeofday(struct timeval * restrict, void *restrict) __asm("__gettimeofday50"); pollution: itimerval pollution: itimerval pollution: setitimer int setitimer(int, const struct itimerval * restrict, struct itimerval * restrict) __asm("__setitimer50"); pollution: e_termination __uint16_t e_termination; pollution: e_exit __uint16_t e_exit; pollution: sockaddr_storage struct sockaddr_storage ut_ss; pollution: AF_APPLETALK #define AF_APPLETALK 16 pollution: AF_ARP #define AF_ARP 28 pollution: AF_BLUETOOTH #define AF_BLUETOOTH 31 pollution: AF_CCITT #define AF_CCITT 10 pollution: AF_CHAOS #define AF_CHAOS 5 pollution: AF_CNT #define AF_CNT 21 pollution: AF_COIP #define AF_COIP 20 pollution: AF_DATAKIT #define AF_DATAKIT 9 pollution: AF_DECnet #define AF_DECnet 12 pollution: AF_DLI #define AF_DLI 13 pollution: AF_E164 #define AF_E164 AF_ISDN pollution: AF_ECMA #define AF_ECMA 8 pollution: AF_HYLINK #define AF_HYLINK 15 pollution: AF_IEEE80211 #define AF_IEEE80211 32 pollution: AF_IMPLINK #define AF_IMPLINK 3 pollution: AF_INET #define AF_INET 2 pollution: AF_INET6 #define AF_INET6 24 pollution: AF_IPX #define AF_IPX 23 pollution: AF_ISDN #define AF_ISDN 26 pollution: AF_ISO #define AF_ISO 7 pollution: AF_LAT #define AF_LAT 14 pollution: AF_LINK #define AF_LINK 18 pollution: AF_LOCAL #define AF_LOCAL 1 pollution: AF_MAX #define AF_MAX 35 pollution: AF_MPLS #define AF_MPLS 33 pollution: AF_NATM #define AF_NATM 27 pollution: AF_NS #define AF_NS 6 pollution: AF_OROUTE #define AF_OROUTE 17 pollution: AF_OSI #define AF_OSI AF_ISO pollution: AF_PUP #define AF_PUP 4 pollution: AF_ROUTE #define AF_ROUTE 34 pollution: AF_SNA #define AF_SNA 11 pollution: AF_UNIX #define AF_UNIX AF_LOCAL pollution: AF_UNSPEC #define AF_UNSPEC 0 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: CLK_TCK #define CLK_TCK (__sysconf(39)) pollution: CMSG_DATA #define CMSG_DATA(cmsg) (__CASTV(u_char *, cmsg) + __CMSG_ASIZE) pollution: CMSG_FIRSTHDR #define CMSG_FIRSTHDR(mhdr) __CASTV(struct cmsghdr *, (mhdr)->msg_controllen < sizeof(struct cmsghdr) ? 0 : (mhdr)->msg_control) pollution: CMSG_LEN #define CMSG_LEN(l) (__CMSG_ASIZE + (l)) pollution: CMSG_NXTHDR #define CMSG_NXTHDR(mhdr,cmsg) __CASTV(struct cmsghdr *, __CMSG_MSGNEXT(cmsg) + __CMSG_ASIZE > __CMSG_MSGEND(mhdr) ? 0 : __CMSG_MSGNEXT(cmsg)) pollution: CMSG_SPACE #define CMSG_SPACE(l) (__CMSG_ASIZE + __CMSG_ALIGN(l)) 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: INT16_C #define INT16_C(c) __int_join(c, __INT16_C_SUFFIX__) pollution: INT16_MAX #define INT16_MAX __INT16_MAX__ pollution: INT16_MIN #define INT16_MIN (-__INT16_MAX__-1) pollution: INT32_C #define INT32_C(c) __int_join(c, __INT32_C_SUFFIX__) pollution: INT32_MAX #define INT32_MAX __INT32_MAX__ pollution: INT32_MIN #define INT32_MIN (-__INT32_MAX__-1) pollution: INT64_C #define INT64_C(c) __int_join(c, __INT64_C_SUFFIX__) pollution: INT64_MAX #define INT64_MAX __INT64_MAX__ pollution: INT64_MIN #define INT64_MIN (-__INT64_MAX__-1) pollution: INT8_C #define INT8_C(c) __int_join(c, __INT8_C_SUFFIX__) pollution: INT8_MAX #define INT8_MAX __INT8_MAX__ pollution: INT8_MIN #define INT8_MIN (-__INT8_MAX__-1) pollution: INTMAX_C #define INTMAX_C(c) __int_join(c, __INTMAX_C_SUFFIX__) pollution: INTMAX_MAX #define INTMAX_MAX __INTMAX_MAX__ pollution: INTMAX_MIN #define INTMAX_MIN (-__INTMAX_MAX__-1) pollution: INTPTR_MAX #define INTPTR_MAX __INTPTR_MAX__ pollution: INTPTR_MIN #define INTPTR_MIN (-__INTPTR_MAX__-1) pollution: INT_FAST16_MAX #define INT_FAST16_MAX __INT_FAST16_MAX__ pollution: INT_FAST16_MIN #define INT_FAST16_MIN (-__INT_FAST16_MAX__-1) pollution: INT_FAST32_MAX #define INT_FAST32_MAX __INT_FAST32_MAX__ pollution: INT_FAST32_MIN #define INT_FAST32_MIN (-__INT_FAST32_MAX__-1) pollution: INT_FAST64_MAX #define INT_FAST64_MAX __INT_FAST64_MAX__ pollution: INT_FAST64_MIN #define INT_FAST64_MIN (-__INT_FAST64_MAX__-1) pollution: INT_FAST8_MAX #define INT_FAST8_MAX __INT_FAST8_MAX__ pollution: INT_FAST8_MIN #define INT_FAST8_MIN (-__INT_FAST8_MAX__-1) pollution: INT_LEAST16_MAX #define INT_LEAST16_MAX __INT_LEAST16_MAX__ pollution: INT_LEAST16_MIN #define INT_LEAST16_MIN (-__INT_LEAST16_MAX__-1) pollution: INT_LEAST32_MAX #define INT_LEAST32_MAX __INT_LEAST32_MAX__ pollution: INT_LEAST32_MIN #define INT_LEAST32_MIN (-__INT_LEAST32_MAX__-1) pollution: INT_LEAST64_MAX #define INT_LEAST64_MAX __INT_LEAST64_MAX__ pollution: INT_LEAST64_MIN #define INT_LEAST64_MIN (-__INT_LEAST64_MAX__-1) pollution: INT_LEAST8_MAX #define INT_LEAST8_MAX __INT_LEAST8_MAX__ pollution: INT_LEAST8_MIN #define INT_LEAST8_MIN (-__INT_LEAST8_MAX__-1) pollution: ITIMER_MONOTONIC #define ITIMER_MONOTONIC 3 pollution: ITIMER_PROF #define ITIMER_PROF 2 pollution: ITIMER_REAL #define ITIMER_REAL 0 pollution: ITIMER_VIRTUAL #define ITIMER_VIRTUAL 1 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: MSG_BCAST #define MSG_BCAST 0x0100 pollution: MSG_CONTROLMBUF #define MSG_CONTROLMBUF 0x2000000 pollution: MSG_CTRUNC #define MSG_CTRUNC 0x0020 pollution: MSG_DONTROUTE #define MSG_DONTROUTE 0x0004 pollution: MSG_DONTWAIT #define MSG_DONTWAIT 0x0080 pollution: MSG_EOR #define MSG_EOR 0x0008 pollution: MSG_IOVUSRSPACE #define MSG_IOVUSRSPACE 0x4000000 pollution: MSG_LENUSRSPACE #define MSG_LENUSRSPACE 0x8000000 pollution: MSG_MCAST #define MSG_MCAST 0x0200 pollution: MSG_NAMEMBUF #define MSG_NAMEMBUF 0x1000000 pollution: MSG_NOSIGNAL #define MSG_NOSIGNAL 0x0400 pollution: MSG_OOB #define MSG_OOB 0x0001 pollution: MSG_PEEK #define MSG_PEEK 0x0002 pollution: MSG_TRUNC #define MSG_TRUNC 0x0010 pollution: MSG_USERFLAGS #define MSG_USERFLAGS 0x0ffffff pollution: MSG_WAITALL #define MSG_WAITALL 0x0040 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: PF_APPLETALK #define PF_APPLETALK AF_APPLETALK pollution: PF_ARP #define PF_ARP AF_ARP pollution: PF_BLUETOOTH #define PF_BLUETOOTH AF_BLUETOOTH pollution: PF_CCITT #define PF_CCITT AF_CCITT pollution: PF_CHAOS #define PF_CHAOS AF_CHAOS pollution: PF_CNT #define PF_CNT AF_CNT pollution: PF_COIP #define PF_COIP AF_COIP pollution: PF_DATAKIT #define PF_DATAKIT AF_DATAKIT pollution: PF_DECnet #define PF_DECnet AF_DECnet pollution: PF_DLI #define PF_DLI AF_DLI pollution: PF_E164 #define PF_E164 AF_E164 pollution: PF_ECMA #define PF_ECMA AF_ECMA pollution: PF_HYLINK #define PF_HYLINK AF_HYLINK pollution: PF_IMPLINK #define PF_IMPLINK AF_IMPLINK pollution: PF_INET #define PF_INET AF_INET pollution: PF_INET6 #define PF_INET6 AF_INET6 pollution: PF_IPX #define PF_IPX AF_IPX pollution: PF_ISDN #define PF_ISDN AF_ISDN pollution: PF_ISO #define PF_ISO AF_ISO pollution: PF_LAT #define PF_LAT AF_LAT pollution: PF_LINK #define PF_LINK AF_LINK pollution: PF_LOCAL #define PF_LOCAL AF_LOCAL pollution: PF_MAX #define PF_MAX AF_MAX pollution: PF_MPLS #define PF_MPLS AF_MPLS pollution: PF_NATM #define PF_NATM AF_NATM pollution: PF_NS #define PF_NS AF_NS pollution: PF_OROUTE #define PF_OROUTE AF_OROUTE pollution: PF_OSI #define PF_OSI AF_ISO pollution: PF_PUP #define PF_PUP AF_PUP pollution: PF_ROUTE #define PF_ROUTE AF_ROUTE pollution: PF_SNA #define PF_SNA AF_SNA pollution: PF_UNIX #define PF_UNIX PF_LOCAL pollution: PF_UNSPEC #define PF_UNSPEC AF_UNSPEC pollution: PRIxREGISTER #define PRIxREGISTER "x" pollution: PTRDIFF_MAX #define PTRDIFF_MAX __PTRDIFF_MAX__ pollution: PTRDIFF_MIN #define PTRDIFF_MIN (-__PTRDIFF_MAX__-1) pollution: SCM_RIGHTS #define SCM_RIGHTS 0x01 pollution: SHUT_RD #define SHUT_RD 0 pollution: SHUT_RDWR #define SHUT_RDWR 2 pollution: SHUT_WR #define SHUT_WR 1 pollution: SIZE_MAX #define SIZE_MAX __SIZE_MAX__ pollution: SOCK_CLOEXEC #define SOCK_CLOEXEC 0x10000000 pollution: SOCK_CONN_DGRAM #define SOCK_CONN_DGRAM 6 pollution: SOCK_DCCP #define SOCK_DCCP SOCK_CONN_DGRAM pollution: SOCK_DGRAM #define SOCK_DGRAM 2 pollution: SOCK_FLAGS_MASK #define SOCK_FLAGS_MASK 0xf0000000 pollution: SOCK_NONBLOCK #define SOCK_NONBLOCK 0x20000000 pollution: SOCK_NOSIGPIPE #define SOCK_NOSIGPIPE 0x40000000 pollution: SOCK_RAW #define SOCK_RAW 3 pollution: SOCK_RDM #define SOCK_RDM 4 pollution: SOCK_SEQPACKET #define SOCK_SEQPACKET 5 pollution: SOCK_STREAM #define SOCK_STREAM 1 pollution: SOL_SOCKET #define SOL_SOCKET 0xffff pollution: SOMAXCONN #define SOMAXCONN 128 pollution: SO_ACCEPTCONN #define SO_ACCEPTCONN 0x0002 pollution: SO_ACCEPTFILTER #define SO_ACCEPTFILTER 0x1000 pollution: SO_BROADCAST #define SO_BROADCAST 0x0020 pollution: SO_DEBUG #define SO_DEBUG 0x0001 pollution: SO_DONTROUTE #define SO_DONTROUTE 0x0010 pollution: SO_ERROR #define SO_ERROR 0x1007 pollution: SO_KEEPALIVE #define SO_KEEPALIVE 0x0008 pollution: SO_LINGER #define SO_LINGER 0x0080 pollution: SO_NOHEADER #define SO_NOHEADER 0x100a pollution: SO_NOSIGPIPE #define SO_NOSIGPIPE 0x0800 pollution: SO_OOBINLINE #define SO_OOBINLINE 0x0100 pollution: SO_OVERFLOWED #define SO_OVERFLOWED 0x1009 pollution: SO_RCVBUF #define SO_RCVBUF 0x1002 pollution: SO_RCVLOWAT #define SO_RCVLOWAT 0x1004 pollution: SO_RCVTIMEO #define SO_RCVTIMEO 0x100c pollution: SO_REUSEADDR #define SO_REUSEADDR 0x0004 pollution: SO_REUSEPORT #define SO_REUSEPORT 0x0200 pollution: SO_SNDBUF #define SO_SNDBUF 0x1001 pollution: SO_SNDLOWAT #define SO_SNDLOWAT 0x1003 pollution: SO_SNDTIMEO #define SO_SNDTIMEO 0x100b pollution: SO_TIMESTAMP #define SO_TIMESTAMP 0x2000 pollution: SO_TYPE #define SO_TYPE 0x1008 pollution: SO_USELOOPBACK #define SO_USELOOPBACK 0x0040 pollution: UINT16_C #define UINT16_C(c) __int_join(c, __UINT16_C_SUFFIX__) pollution: UINT16_MAX #define UINT16_MAX __UINT16_MAX__ pollution: UINT32_C #define UINT32_C(c) __int_join(c, __UINT32_C_SUFFIX__) pollution: UINT32_MAX #define UINT32_MAX __UINT32_MAX__ pollution: UINT64_C #define UINT64_C(c) __int_join(c, __UINT64_C_SUFFIX__) pollution: UINT64_MAX #define UINT64_MAX __UINT64_MAX__ pollution: UINT8_C #define UINT8_C(c) __int_join(c, __UINT8_C_SUFFIX__) pollution: UINT8_MAX #define UINT8_MAX __UINT8_MAX__ pollution: UINTMAX_C #define UINTMAX_C(c) __int_join(c, __UINTMAX_C_SUFFIX__) pollution: UINTMAX_MAX #define UINTMAX_MAX __UINTMAX_MAX__ pollution: UINTPTR_MAX #define UINTPTR_MAX __UINTPTR_MAX__ pollution: UINT_FAST16_MAX #define UINT_FAST16_MAX __UINT_FAST16_MAX__ pollution: UINT_FAST32_MAX #define UINT_FAST32_MAX __UINT_FAST32_MAX__ pollution: UINT_FAST64_MAX #define UINT_FAST64_MAX __UINT_FAST64_MAX__ pollution: UINT_FAST8_MAX #define UINT_FAST8_MAX __UINT_FAST8_MAX__ pollution: UINT_LEAST16_MAX #define UINT_LEAST16_MAX __UINT_LEAST16_MAX__ pollution: UINT_LEAST32_MAX #define UINT_LEAST32_MAX __UINT_LEAST32_MAX__ pollution: UINT_LEAST64_MAX #define UINT_LEAST64_MAX __UINT_LEAST64_MAX__ pollution: UINT_LEAST8_MAX #define UINT_LEAST8_MAX __UINT_LEAST8_MAX__ pollution: WCHAR_MAX #define WCHAR_MAX 0x7fffffff pollution: WCHAR_MIN #define WCHAR_MIN (-0x7fffffff-1) pollution: WINT_MAX #define WINT_MAX 0x7fffffff pollution: WINT_MIN #define WINT_MIN (-0x7fffffff-1) 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: htonl #define htonl(x) bswap32(__CAST(uint32_t, (x))) pollution: htons #define htons(x) bswap16(__CAST(uint16_t, (x))) pollution: le16toh #define le16toh(x) htole16(x) pollution: le32toh #define le32toh(x) htole32(x) pollution: le64toh #define le64toh(x) htole64(x) pollution: ntohl #define ntohl(x) bswap32(__CAST(uint32_t, (x))) pollution: ntohs #define ntohs(x) bswap16(__CAST(uint16_t, (x))) pollution: sstocsa #define sstocsa(__ss) ((const struct sockaddr *)(__ss)) pollution: sstosa #define sstosa(__ss) ((struct sockaddr *)(__ss))