Lines Matching refs:ntohl
66 * These use the MACHINE DEPENDENT routines ntohl, htonl
69 * To simplify the implementation, we use ntohl/htonl even on big-endian
75 #define fxdr_unsigned(t, v) ((t)ntohl(v))
80 (t)->tv_sec = ntohl(((struct nfsv2_time *)(f))->nfsv2_sec); \
82 (t)->tv_nsec = 1000 * ntohl(((struct nfsv2_time *)(f))->nfsv2_usec); \
98 (t)->tv_sec = ntohl(((struct nfsv3_time *)(f))->nfsv3_sec); \
99 (t)->tv_nsec = ntohl(((struct nfsv3_time *)(f))->nfsv3_nsec); \
103 (t)->nfsv3_sec = ntohl(((struct nfsv3_time *)(f))->nfsv3_sec); \
104 (t)->nfsv3_nsec = ntohl(((struct nfsv3_time *)(f))->nfsv3_nsec); \
120 ((((uint64_t)ntohl(((uint32_t *)(f))[0])) << 32) | \
121 (uint64_t)(ntohl(((uint32_t *)(f))[1])))