Home
last modified time | relevance | path

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

/src/contrib/xz/src/common/
H A Dtuklib_integer.h70 # define byteswap32(num) __builtin_bswap32(num) macro
80 # define byteswap32(num) bswap_32(num) macro
91 # define byteswap32(num) swap32(num) macro
95 # define byteswap32(num) bswap32(num) macro
106 # define byteswap32(num) BSWAP_32(num) macro
138 #ifndef byteswap32
139 # define byteswap32(n) (uint32_t)( \ macro
175 # define conv32le(num) byteswap32(num)
185 # define conv32be(num) byteswap32(num)
/src/contrib/xz/src/liblzma/check/
H A Dcrc32_fast.c49 crc = byteswap32(crc); in lzma_crc32_generic()
95 crc = byteswap32(crc); in lzma_crc32_generic()
H A Dcrc32_tablegen.c46 crc32_table[s][b] = byteswap32(crc32_table[s][b]); in init_crc32_table()