Lines Matching full:unaligned
35 * Inline functions or macros to extract possibly-unaligned big-endian
77 * The processor natively handles unaligned loads, so we can just
82 * unaligned accesses if the target is the 68000 or 68010?
141 * This is MIPS or Alpha, which don't natively handle unaligned loads,
142 * but which have instructions that can help when doing unaligned
151 * __attribute__((packed)) causes the compiler to generate unaligned-safe
155 * instructions to do an unaligned load and pass stuff to "ntohs()" or
170 * "#pragma unaligned N" in version A.05.50 and later, where "N"
177 * to define unaligned_uint16_t as a 16-bit unaligned data type.
185 * compiler to generate code that does unaligned loads and stores when
189 * __attribute__((packed))? How can we get it to generate unaligned
257 * This architecture doesn't natively support unaligned loads, and either
260 * set to do unaligned loads, so do unaligned loads of big-endian
265 * unaligned loads; ARMv6 and later support it *but* have a bit in
267 * unaligned loads to fault rather than succeeding.
270 * as supporting unaligned loads. If your OS supports them on ARM,
318 #endif /* unaligned access checks */
331 * XXX - on platforms that can do unaligned accesses, just cast and
477 * Macros to extract possibly-unaligned little-endian integral values.
478 * XXX - do loads on little-endian machines that support unaligned loads?