Searched defs:ntohll (Results 1 – 8 of 8) sorted by relevance
22 #define ntohll(x) __bswap_64(x) macro25 #define ntohll(x) (x) macro
94 uint64_t ntohll(uint64_t a) { in ntohll() function98 uint64_t ntohll(uint64_t a) { in ntohll() function
77 # define ntohll(x) (x) macro80 # define ntohll(x) ((((uint64_t)ntohl(x)) << 32) + ntohl((uint64_t)(x) >> 32)) macro
231 #define ntohll(x) ((1==ntohl(1)) ? (x) : ((uint64_t)ntohl((x) & 0xFFFFFFFF) << 32) | ntohl((x) >> 3… macro
30 #define ntohll(x) (x) macro32 #define ntohll(x) bswap_64((x)) macro
40 #define ntohll(x) be64_to_cpu(x) macro
76 #define ntohll cpu_to_be64 macro
78 #define ntohll(in) be64toh(in) macro