Searched defs:CMSG_ALIGN (Results 1 – 5 of 5) sorted by relevance
26 macro_rules! CMSG_ALIGN { macro
44 const fn CMSG_ALIGN(len: usize) -> usize { in CMSG_ALIGN() function
309 #define CMSG_ALIGN(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1)) macro
362 #define CMSG_ALIGN(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1)) macro
687 def CMSG_ALIGN(len): return ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) ) function