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
174 Here is another example of some code that could cause unaligned accesses:
182 This code will cause unaligned accesses every time the data parameter points
191 Avoiding unaligned accesses
222 These macros work for memory accesses of any length (not just 32 bits as
229 Due to the byte-wise nature of this operation, unaligned accesses are avoided.
247 unnecessary on architectures that can do unaligned accesses, the code can be