Home
last modified time | relevance | path

Searched defs:CMSG_ALIGN (Results 1 – 3 of 3) sorted by relevance

/external/crosvm/base/src/sys/unix/
Dsock_ctrl_msg.rs45 macro_rules! CMSG_ALIGN { macro
/external/musl/include/sys/
Dsocket.h362 #define CMSG_ALIGN(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1)) macro
/external/python/cpython2/Lib/plat-atheos/
DIN.py687 def CMSG_ALIGN(len): return ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) ) function