OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__CMSG_ALIGN
(Results
1 - 2
of
2
) sorted by null
/device/linaro/bootloader/edk2/StdLib/Include/sys/
socket.h
481
((u_char *)(void *)(cmsg) +
__CMSG_ALIGN
(sizeof(struct cmsghdr)))
484
__CMSG_ALIGN
(sizeof(struct cmsghdr)))
495
#define
__CMSG_ALIGN
(n) (((n) + __cmsg_alignbytes()) & ~__cmsg_alignbytes())
497
#define CMSG_ALIGN(n)
__CMSG_ALIGN
(n)
502
(((__caddr_t)(cmsg) +
__CMSG_ALIGN
((cmsg)->cmsg_len) + \
503
__CMSG_ALIGN
(sizeof(struct cmsghdr)) > \
507
__CMSG_ALIGN
((cmsg)->cmsg_len)))
518
#define CMSG_SPACE(l) (
__CMSG_ALIGN
(sizeof(struct cmsghdr)) +
__CMSG_ALIGN
(l))
519
#define CMSG_LEN(l) (
__CMSG_ALIGN
(sizeof(struct cmsghdr)) + (l))
[
all
...]
/external/openssh/
defines.h
529
#ifndef
__CMSG_ALIGN
530
#define
__CMSG_ALIGN
(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES)
535
#define CMSG_LEN(len) (
__CMSG_ALIGN
(sizeof(struct cmsghdr)) + (len))
540
#define CMSG_SPACE(len) (
__CMSG_ALIGN
(sizeof(struct cmsghdr)) +
__CMSG_ALIGN
(len))
545
#define CMSG_DATA(cmsg) ((u_char *)(cmsg) +
__CMSG_ALIGN
(sizeof(struct cmsghdr)))
Completed in 220 milliseconds