HomeSort by: relevance | last modified time | path
    Searched defs:ALIGNMENT (Results 1 - 9 of 9) sorted by relevancy

  /src/tests/libexec/ld.elf_so/
t_tls_alignment.c 34 #define ALIGNMENT 64
43 uint64_t magic2 __attribute__((aligned(ALIGNMENT)));
55 "TLS alignment requirements met");
  /src/external/bsd/unbound/dist/util/
regional.c 47 #ifdef ALIGNMENT
48 # undef ALIGNMENT
50 /** increase size until it fits alignment of s bytes */
53 #define ALIGNMENT (sizeof(uint64_t))
75 size_t a = ALIGN_UP(sizeof(struct regional), ALIGNMENT);
93 size = ALIGN_UP(size, ALIGNMENT);
158 a = ALIGN_UP(size, ALIGNMENT);
161 s = malloc(ALIGNMENT + size);
163 r->total_large += ALIGNMENT+size;
166 return (char*)s+ALIGNMENT;
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/libcollector/
memmgr.c 56 #define ALIGNMENT 4 /* 2^ALIGNMENT == minimal size and alignment */
57 #define ALIGN(x) ((((x) - 1)/(1 << ALIGNMENT) + 1) * (1 << ALIGNMENT))
196 unsigned idx = ALIGNMENT;
266 unsigned idx = ALIGNMENT;
  /src/external/gpl3/binutils.old/dist/gprofng/libcollector/
memmgr.c 56 #define ALIGNMENT 4 /* 2^ALIGNMENT == minimal size and alignment */
57 #define ALIGN(x) ((((x) - 1)/(1 << ALIGNMENT) + 1) * (1 << ALIGNMENT))
196 unsigned idx = ALIGNMENT;
266 unsigned idx = ALIGNMENT;
  /src/external/bsd/nsd/dist/
region-allocator.c 23 #ifdef ALIGNMENT
24 #undef ALIGNMENT
29 #define ALIGNMENT (sizeof(off_t))
31 #define ALIGNMENT (sizeof(void *))
35 #define ALIGNMENT 1
61 size_t unused_space; /* Unused space due to alignment, etc. */
260 aligned_size = REGION_ALIGN_UP(size, ALIGNMENT);
292 wasted = (region->chunk_size - region->allocated) & (~(ALIGNMENT-1));
295 wasted >= ALIGNMENT
461 aligned_size = REGION_ALIGN_UP(size, ALIGNMENT);
    [all...]
  /src/external/bsd/pcc/dist/pcc/mip/
common.c 659 #define ALIGNMENT offsetof(struct balloc, a2)
660 #define ROUNDUP(x) (((x) + ((ALIGNMENT)-1)) & ~((ALIGNMENT)-1))
723 #define NELEM ((MEMCHUNKSZ-ROUNDUP(sizeof(struct xalloc *)))/ALIGNMENT)
724 #define ELEMSZ (ALIGNMENT)
729 struct balloc b; /* for initial alignment */
  /src/external/gpl2/lvm2/dist/libdm/ioctl/
libdm-iface.c 127 #define ALIGNMENT 8
678 names = _align((void *) ++names + len + 1, ALIGNMENT);
1226 out = _align(out, ALIGNMENT);
1282 len += strlen(t->params) + 1 + ALIGNMENT;
  /src/external/mpl/bind/dist/lib/isc/
mem.c 81 #define ALIGNMENT 8U /*%< must be a power of 2 */
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
pftn.c 927 * - If ALSTRUCT is defined, this will be the struct alignment and the
929 * the alignment of the largest struct member.
950 * extract size and alignment, calculate offsets
961 * set al, the alignment, to the lcm of the alignments
1148 * compute the alignment of an object with type ty, sizeoff index s
1163 cerror("compiler takes alignment of function");
1167 /* check for alignment attribute */
1170 uerror("no alignment");
1198 uerror("no alignment");
1327 * offset of a value of size `size', alignment `alignment'
    [all...]

Completed in 38 milliseconds