Lines Matching refs:an
10 The definition of an unaligned access
14 from an address that is not evenly divisible by N (i.e. addr % N != 0).
16 reading 4 bytes of data from address 0x10005 would be an unaligned memory
46 The effects of performing an unaligned memory access vary from architecture
84 Let us assume that an instance of the above structure resides in memory
86 not be unreasonable to expect that accessing field2 would cause an unaligned
102 will never cause an unaligned access, because all memory addresses are evenly
140 that can cause an unaligned memory access. The following function taken
141 from include/linux/etherdevice.h is an optimized routine to compare two
163 Think about what would happen if addr1 was an odd address such as 0x10003.
164 (Hint: it'd be an unaligned access.)
183 to an address that is not evenly divisible by 4.
197 Going back to an earlier example of code that potentially causes unaligned
240 DMA to an address which can be expressed as 4*n + 2. One notable exception
246 required to copy the incoming frame into an aligned buffer. Because this is