Lines Matching +full:hardware +full:- +full:wise
26 which will compile to multiple-byte memory access instructions, namely when
53 - Some architectures are able to perform unaligned memory accesses
55 - Some architectures raise processor exceptions when unaligned accesses
58 - Some architectures raise processor exceptions when unaligned accesses
61 - Some architectures are not capable of unaligned memory access, but will
125 structure type. This GCC-specific attribute tells the compiler never to
135 non-packed case, so the packed attribute should only be used when avoiding
161 In the above function, when the hardware has efficient unaligned access
162 capability, there is no issue with this code. But when the hardware isn't
171 16-bit-aligned addresses. It is up to the caller to ensure this alignment or
172 not use this function at all. This alignment-unsafe function is still useful
232 Due to the byte-wise nature of this operation, unaligned accesses are avoided.
234 --