Home
last modified time | relevance | path

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

/src/contrib/xz/src/common/ !
H A Dtuklib_integer.h71 # define byteswap64(num) __builtin_bswap64(num) macro
83 # define byteswap64(num) bswap_64(num) macro
92 # define byteswap64(num) swap64(num) macro
96 # define byteswap64(num) bswap64(num) macro
109 # define byteswap64(num) BSWAP_64(num) macro
147 #ifndef byteswap64
148 # define byteswap64(n) (uint64_t)( \ macro
178 # define conv64le(num) byteswap64(num)
188 # define conv64be(num) byteswap64(num)
/src/contrib/xz/src/liblzma/check/ !
H A Dcrc64_fast.c54 crc = byteswap64(crc); in lzma_crc64_generic()
88 crc = byteswap64(crc); in lzma_crc64_generic()
H A Dcrc64_tablegen.c45 crc64_table[s][b] = byteswap64(crc64_table[s][b]); in init_crc64_table()