Lines Matching refs:an
13 The definition of an unaligned access
17 from an address that is not evenly divisible by N (i.e. addr % N != 0).
19 reading 4 bytes of data from address 0x10005 would be an unaligned memory
49 The effects of performing an unaligned memory access vary from architecture
87 Let us assume that an instance of the above structure resides in memory
89 not be unreasonable to expect that accessing field2 would cause an unaligned
105 will never cause an unaligned access, because all memory addresses are evenly
143 that can cause an unaligned memory access. The following function taken
144 from the Linux Kernel's include/linux/etherdevice.h is an optimized routine
166 Think about what would happen if addr1 was an odd address such as 0x10003.
167 (Hint: it'd be an unaligned access.)
186 to an address that is not evenly divisible by 4.
200 Going back to an earlier example of code that potentially causes unaligned