Searched defs:_ALIGN (Results 1 - 2 of 2) sorted by relevance

/external/stlport/src/
H A Dallocators.cpp115 enum { _ALIGN = 16, _ALIGN_SHIFT = 4 }; enumerator in enum:__anon31230
117 enum { _ALIGN = 2 * sizeof(void*), _ALIGN_SHIFT = 2 + sizeof(void*) / 4 }; enumerator in enum:__anon31231
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/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
H A Dsocket.h366 #ifndef _ALIGN
367 #define _ALIGN(p) (((unsigned)(p) + _ALIGNBYTES) & ~_ALIGNBYTES) macro
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(
[all...]

Completed in 67 milliseconds