Lines Matching +full:big +full:- +full:endian
27 make -C /path/to/kernel/source \
28 KCPPFLAGS=-I"$(pwd)/../../include" M="$(pwd)" \
35 make -C /path/to/kernel/source \
36 KCPPFLAGS=-I"$(pwd)/../../include" M="$(pwd)" \
51 XZ Embedded should compile as either GNU-C89 (used in the Linux
53 non-GNU C89 compiler or a C++ compiler should be quite easy as
54 long as there is a data type for unsigned 64-bit integer (or the
56 care than just using 32-bit integer instead of 64-bit).
58 If you use GCC, try to use a recent version. For example, on x86-32,
59 xz_dec_lzma2.c compiled with GCC 3.3.6 is 15-25 % slower than when
105 CRC32. Support for CRC64 is optional. SHA-256 is currently not
130 file cannot be decompressed. For multi-call mode, this can be modified
134 integrity check won't be verified. In single-call mode there's
136 in single-call mode.
147 XZ_DEC_X86 x86-32 or x86-64 Little endian only
148 XZ_DEC_POWERPC PowerPC Big endian only
149 XZ_DEC_IA64 Itanium (IA-64) Big or little endian
150 XZ_DEC_ARM ARM Little endian only
151 XZ_DEC_ARMTHUMB ARM-Thumb Little endian only
152 XZ_DEC_SPARC SPARC Big or little endian
154 While some architectures are (partially) bi-endian, the endianness
156 architectures. That's why Itanium and SPARC filters work for both big
157 and little endian executables (Itanium has little endian instructions
158 and SPARC has big endian instructions).
160 There currently is no filter for little endian PowerPC or big endian
161 ARM or ARM-Thumb. Implementing filters for them can be considered if
162 there is a need for such filters in real-world applications.