Home
last modified time | relevance | path

Searched refs:__CMSG_ALIGN (Results 1 – 2 of 2) sorted by relevance

/src/crypto/openssh/
H A Ddefines.h601 #ifndef __CMSG_ALIGN
602 #define __CMSG_ALIGN(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES) macro
607 #define CMSG_LEN(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
612 #define CMSG_SPACE(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + __CMSG_ALIGN(len))
617 #define CMSG_DATA(cmsg) ((u_char *)(cmsg) + __CMSG_ALIGN(sizeof(struct cmsghdr)))
/src/contrib/unbound/util/
H A Dnetevent.c89 # ifdef __CMSG_ALIGN
90 # define CMSG_ALIGN(n) __CMSG_ALIGN(n)