Searched refs:__ALIGN_MASK (Results 1 – 4 of 4) sorted by relevance
| /u-boot/tools/ |
| A D | imagetool.h | 30 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) macro 31 #define ALIGN(x, a) __ALIGN_MASK((x), (typeof(x))(a) - 1)
|
| A D | proftool.c | 39 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) macro 40 #define ALIGN(x, a) __ALIGN_MASK((x), (typeof(x))(a) - 1)
|
| /u-boot/include/linux/ |
| A D | kernel.h | 49 #define ALIGN(x,a) __ALIGN_MASK((x),(typeof(x))(a)-1) 51 #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask)) macro
|
| /u-boot/arch/sandbox/cpu/ |
| A D | os.c | 395 #define ALIGN(x, a) __ALIGN_MASK((x), (typeof(x))(a) - 1) 396 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) macro
|
Completed in 11 milliseconds