Lines Matching full:unaligned
65 * The processor natively handles unaligned loads, so we can just
70 * unaligned accesses if the target is the 68000 or 68010?
119 * This is MIPS or Alpha, which don't natively handle unaligned loads,
120 * but which have instructions that can help when doing unaligned
129 * __attribute__((packed)) causes the compiler to generate unaligned-safe
133 * instructions to do an unaligned load and pass stuff to "ntohs()" or
148 * "#pragma unaligned N" in version A.05.50 and later, where "N"
155 * to define unaligned_uint16_t as a 16-bit unaligned data type.
163 * compiler to generate code that does unaligned loads and stores when
167 * __attribute__((packed))? How can we get it to generate unaligned
225 * This architecture doesn't natively support unaligned loads, and either
228 * set to do unaligned loads, so do unaligned loads of big-endian
233 * unaligned loads; ARMv6 and later support it *but* have a bit in
235 * unaligned loads to fault rather than succeeding.
238 * as supporting unaligned loads. If your OS supports them on ARM,
286 #endif /* unaligned access checks */
379 * Macros to extract possibly-unaligned little-endian integral values.
380 * XXX - do loads on little-endian machines that support unaligned loads?