Home | History | Annotate | Download | only in x86

Lines Matching refs:ALIGN_DOWN

56 #define ALIGN_DOWN(x, align_to) ((x) & ~((align_to)-1))
58 #define ALIGN_PTR_DOWN(p, ptr_align_to) ((typeof(p))ALIGN_DOWN((unsigned long)(p), ptr_align_to))