mirror of https://git.tukaani.org/xz.git
liblzma: Fix white space
This commit is contained in:
parent
caea7844d3
commit
50e6bff274
|
@ -34,9 +34,9 @@ typedef void lzma_crc32_dummy;
|
||||||
// Having the declaration here silences clang -Wmissing-variable-declarations.
|
// Having the declaration here silences clang -Wmissing-variable-declarations.
|
||||||
extern const uint32_t lzma_crc32_table[8][256];
|
extern const uint32_t lzma_crc32_table[8][256];
|
||||||
|
|
||||||
# ifdef WORDS_BIGENDIAN
|
# ifdef WORDS_BIGENDIAN
|
||||||
# include "crc32_table_be.h"
|
# include "crc32_table_be.h"
|
||||||
# else
|
# else
|
||||||
# include "crc32_table_le.h"
|
# include "crc32_table_le.h"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -266,7 +266,7 @@ crc32_arch_optimized(const uint8_t *buf, size_t size, uint32_t crc)
|
||||||
|
|
||||||
__m128i v0, v1, v2;
|
__m128i v0, v1, v2;
|
||||||
|
|
||||||
crc_simd_body(buf, size, &v0, &v1, vfold16,
|
crc_simd_body(buf, size, &v0, &v1, vfold16,
|
||||||
_mm_cvtsi32_si128((int32_t)~crc));
|
_mm_cvtsi32_si128((int32_t)~crc));
|
||||||
|
|
||||||
v1 = _mm_xor_si128(
|
v1 = _mm_xor_si128(
|
||||||
|
@ -355,12 +355,12 @@ crc64_arch_optimized(const uint8_t *buf, size_t size, uint64_t crc)
|
||||||
__m128i v0, v1, v2;
|
__m128i v0, v1, v2;
|
||||||
|
|
||||||
#if defined(__i386__) || defined(_M_IX86)
|
#if defined(__i386__) || defined(_M_IX86)
|
||||||
crc_simd_body(buf, size, &v0, &v1, vfold16,
|
crc_simd_body(buf, size, &v0, &v1, vfold16,
|
||||||
_mm_set_epi64x(0, (int64_t)~crc));
|
_mm_set_epi64x(0, (int64_t)~crc));
|
||||||
#else
|
#else
|
||||||
// GCC and Clang would produce good code with _mm_set_epi64x
|
// GCC and Clang would produce good code with _mm_set_epi64x
|
||||||
// but MSVC needs _mm_cvtsi64_si128 on x86-64.
|
// but MSVC needs _mm_cvtsi64_si128 on x86-64.
|
||||||
crc_simd_body(buf, size, &v0, &v1, vfold16,
|
crc_simd_body(buf, size, &v0, &v1, vfold16,
|
||||||
_mm_cvtsi64_si128((int64_t)~crc));
|
_mm_cvtsi64_si128((int64_t)~crc));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
static inline uint32_t
|
static inline uint32_t
|
||||||
rotr_32(uint32_t num, unsigned amount)
|
rotr_32(uint32_t num, unsigned amount)
|
||||||
{
|
{
|
||||||
return (num >> amount) | (num << (32 - amount));
|
return (num >> amount) | (num << (32 - amount));
|
||||||
}
|
}
|
||||||
|
|
||||||
#define blk0(i) (W[i] = conv32be(data[i]))
|
#define blk0(i) (W[i] = conv32be(data[i]))
|
||||||
|
|
Loading…
Reference in New Issue