Searched refs:hostlong (Results 1 – 3 of 3) sorted by relevance
92 __STATIC __INLINE uint32_t co_htonl(uint32_t hostlong) in co_htonl() argument95 return hostlong; in co_htonl()97 return co_bswap32(hostlong); in co_htonl()177 __STATIC __INLINE uint32_t co_htobl(uint32_t hostlong) in co_htobl() argument180 return hostlong; in co_htobl()182 return co_bswap32(hostlong); in co_htobl()
30 uint32_t nghttp2_htonl(uint32_t hostlong) in nghttp2_htonl() argument34 *p++ = hostlong >> 24; in nghttp2_htonl()35 *p++ = (hostlong >> 16) & 0xffu; in nghttp2_htonl()36 *p++ = (hostlong >> 8) & 0xffu; in nghttp2_htonl()37 *p = hostlong & 0xffu; in nghttp2_htonl()
54 STIN uint32_t nghttp2_htonl(uint32_t hostlong);
Completed in 3 milliseconds