Home
last modified time | relevance | path

Searched refs:MONGO_UINT64_SWAB (Results 1 – 1 of 1) sorted by relevance

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/platform/
H A Dendian.h60 #undef MONGO_UINT64_SWAB
81 #define MONGO_UINT64_SWAB(v) _byteswap_uint64(v) macro
91 #define MONGO_UINT64_SWAB(v) __builtin_bswap64(v) macro
96 #define MONGO_UINT64_SWAB(v) __builtin_bswap64(v) macro
105 #define MONGO_UINT64_SWAB(v) BSWAP_64(v) macro
116 #ifndef MONGO_UINT64_SWAB
123 #define htobe64(v) MONGO_UINT64_SWAB(v)
129 #define be64toh(v) MONGO_UINT64_SWAB(v)
139 #define htole64(v) MONGO_UINT64_SWAB(v)
145 #define le64toh(v) MONGO_UINT64_SWAB(v)
[all …]