HomeSort by relevance Sort by last modified time
    Searched refs:_ALIGN (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
socket.h 366 #ifndef _ALIGN
367 #define _ALIGN(p) (((unsigned)(p) + _ALIGNBYTES) & ~_ALIGNBYTES)
372 _ALIGN(sizeof(struct cmsghdr)))
376 (((caddr_t)(cmsg) + _ALIGN((cmsg)->cmsg_len) + \
377 _ALIGN(sizeof(struct cmsghdr)) > \
380 (struct cmsghdr *)((caddr_t)(cmsg) + _ALIGN((cmsg)->cmsg_len)))
386 #define CMSG_SPACE(l) (_ALIGN(sizeof(struct cmsghdr)) + _ALIGN(l))
387 #define CMSG_LEN(l) (_ALIGN(sizeof(struct cmsghdr)) + (l))
390 #define CMSG_ALIGN(n) _ALIGN(n
    [all...]
  /external/stlport/src/
allocators.cpp 115 enum { _ALIGN = 16, _ALIGN_SHIFT = 4 };
117 enum { _ALIGN = 2 * sizeof(void*), _ALIGN_SHIFT = 2 + sizeof(void*) / 4 };
248 { return (((__bytes) + (size_t)_ALIGN-1) & ~((size_t)_ALIGN - 1)); }
404 for (size_t __i = _p_size; __i <= (size_t)_MAX_BYTES; __i += (size_t)_ALIGN) {
526 # define _STLP_OFFSET _ALIGN
539 _STLP_STATIC_ASSERT(sizeof(_Obj) <= _ALIGN)
578 size_t __rounded_down = _S_round_up(__bytes_left + 1) - (size_t)_ALIGN;
598 for (size_t __i = _p_size; __i <= (size_t)_MAX_BYTES; __i += (size_t)_ALIGN) {
607 size_t __rounded_down = _S_round_up(__bytes_left+1) - (size_t)_ALIGN;
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
allocators.cpp 115 enum { _ALIGN = 16, _ALIGN_SHIFT = 4 };
117 enum { _ALIGN = 2 * sizeof(void*), _ALIGN_SHIFT = 2 + sizeof(void*) / 4 };
248 { return (((__bytes) + (size_t)_ALIGN-1) & ~((size_t)_ALIGN - 1)); }
404 for (size_t __i = _p_size; __i <= (size_t)_MAX_BYTES; __i += (size_t)_ALIGN) {
526 # define _STLP_OFFSET _ALIGN
539 _STLP_STATIC_ASSERT(sizeof(_Obj) <= _ALIGN)
578 size_t __rounded_down = _S_round_up(__bytes_left + 1) - (size_t)_ALIGN;
598 for (size_t __i = _p_size; __i <= (size_t)_MAX_BYTES; __i += (size_t)_ALIGN) {
607 size_t __rounded_down = _S_round_up(__bytes_left+1) - (size_t)_ALIGN;
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_os_userspace.h 1100 #define CMSG_ALIGN(n) _ALIGN(n
    [all...]

Completed in 187 milliseconds