OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CMSG_ALIGN
(Results
51 - 54
of
54
) sorted by null
1
2
3
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
socket.h
66
#define
CMSG_ALIGN
(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
68
#define CMSG_DATA(cmsg) ((void *)((char *)(cmsg) +
CMSG_ALIGN
(sizeof(struct cmsghdr))))
69
#define CMSG_SPACE(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) +
CMSG_ALIGN
(len))
70
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) + (len))
89
__ptr = (struct cmsghdr*)(((unsigned char *) __cmsg) +
CMSG_ALIGN
(__cmsg->cmsg_len));
/bionic/libc/include/sys/
socket.h
102
#define
CMSG_ALIGN
(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
103
#define CMSG_DATA(cmsg) ((void *)((char *)(cmsg) +
CMSG_ALIGN
(sizeof(struct cmsghdr))))
104
#define CMSG_SPACE(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) +
CMSG_ALIGN
(len))
105
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) + (len))
120
__ptr = (struct cmsghdr*)(((unsigned char *) __cmsg) +
CMSG_ALIGN
(__cmsg->cmsg_len));
/external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
socket.h
379
#define
CMSG_ALIGN
(n) _ALIGN(n)
/external/kernel-headers/original/linux/
socket.h
100
#define
CMSG_ALIGN
(len) ( ((len)+sizeof(long)-1) & ~(sizeof(long)-1) )
102
#define CMSG_DATA(cmsg) ((void *)((char *)(cmsg) +
CMSG_ALIGN
(sizeof(struct cmsghdr))))
103
#define CMSG_SPACE(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) +
CMSG_ALIGN
(len))
104
#define CMSG_LEN(len) (
CMSG_ALIGN
(sizeof(struct cmsghdr)) + (len))
133
__ptr = (struct cmsghdr*)(((unsigned char *) __cmsg) +
CMSG_ALIGN
(__cmsg->cmsg_len));
Completed in 498 milliseconds
1
2
3