Searched refs:hostlong (Results 1 – 5 of 5) sorted by relevance
53 STIN uint32_t htonl(uint32_t hostlong) { in htonl() argument56 *p++ = (unsigned char)(hostlong >> 24); in htonl()57 *p++ = (hostlong >> 16) & 0xffu; in htonl()58 *p++ = (hostlong >> 8) & 0xffu; in htonl()59 *p = hostlong & 0xffu; in htonl()
91 STIN uint32_t ngtcp2_htonl(uint32_t hostlong) { in ngtcp2_htonl() argument94 *p++ = (unsigned char)(hostlong >> 24); in ngtcp2_htonl()95 *p++ = (hostlong >> 16) & 0xffu; in ngtcp2_htonl()96 *p++ = (hostlong >> 8) & 0xffu; in ngtcp2_htonl()97 *p = hostlong & 0xffu; in ngtcp2_htonl()
88 STIN uint32_t htonl(uint32_t hostlong) { in htonl() argument91 *p++ = (unsigned char)(hostlong >> 24); in htonl()92 *p++ = (hostlong >> 16) & 0xffu; in htonl()93 *p++ = (hostlong >> 8) & 0xffu; in htonl()94 *p = hostlong & 0xffu; in htonl()
901 /// uint32_t htonl(uint32_t hostlong);