Searched refs:hostshort (Results 1 – 3 of 3) sorted by relevance
110 __STATIC __INLINE uint16_t co_htons(uint16_t hostshort) in co_htons() argument113 return hostshort; in co_htons()115 return co_bswap16(hostshort); in co_htons()195 __STATIC __INLINE uint16_t co_htobs(uint16_t hostshort) in co_htobs() argument198 return hostshort; in co_htobs()200 return co_bswap16(hostshort); in co_htobs()
41 uint16_t nghttp2_htons(uint16_t hostshort) in nghttp2_htons() argument45 *p++ = hostshort >> 8; in nghttp2_htons()46 *p = hostshort & 0xffu; in nghttp2_htons()
56 STIN uint16_t nghttp2_htons(uint16_t hostshort);
Completed in 3 milliseconds