Lines Matching refs:accesses
6 unaligned accesses, why you need to write code that doesn't cause them,
13 Unaligned memory accesses occur when you try to read N bytes of data starting
50 - Some architectures are able to perform unaligned memory accesses
52 - Some architectures raise processor exceptions when unaligned accesses
55 - Some architectures raise processor exceptions when unaligned accesses
63 memory accesses to happen, your code will not work correctly on certain
94 to pad structures so that accesses to fields are suitably aligned (assuming
127 lead to unaligned accesses when accessing fields that do not satisfy
164 Here is another example of some code that could cause unaligned accesses:
172 This code will cause unaligned accesses every time the data parameter points
181 Avoiding unaligned accesses
212 These macros work for memory accesses of any length (not just 32 bits as
219 Due to the byte-wise nature of this operation, unaligned accesses are avoided.
237 unnecessary on architectures that can do unaligned accesses, the code can be