HomeSort by: relevance | last modified time | path
    Searched defs:HTOBE64 (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/hpc/stand/include/machine/
endian.h 164 #define htobe64(x) (x) macro
171 #define HTOBE64(x) (void) (x)
180 #define htobe64(x) bswap64((uint64_t)(x))
187 #define HTOBE64(x) (x) = bswap64((uint64_t)(x))
196 #define be64toh(x) htobe64(x)
203 #define BE64TOH(x) HTOBE64(x)
  /src/sys/sys/
endian.h 146 #define htobe64(x) __CAST(uint64_t, (x)) macro
153 #define HTOBE64(x) __CAST(void, (x))
162 #define htobe64(x) bswap64(__CAST(uint64_t, (x)))
169 #define HTOBE64(x) (x) = bswap64(__CAST(uint64_t, (x)))
178 #define be64toh(x) htobe64(x)
185 #define BE64TOH(x) HTOBE64(x)

Completed in 185 milliseconds