Searched refs:ALIGN (Results 26 - 50 of 78) sorted by relevance

1234

/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/libffi-src/include/
H A Dffi_common.h69 #define ALIGN(v, a) (((size_t)(v) + (a) - 1) & ~((a) - 1)) macro
/macosx-10.10.1/xnu-2782.1.97/bsd/i386/
H A Dparam.h83 #define ALIGN(p) __DARWIN_ALIGN(p) macro
/macosx-10.10.1/Libc-1044.1.2/include/
H A Dasm.h289 /* There is another definition of ALIGN for .c sources */
291 #define ALIGN 2 macro
340 .align ALIGN;\
352 .align ALIGN;\
382 #define DATA(x) .globl EXT(x); ELF_DATA(EXT(x)); .align ALIGN; LEXT(x)
396 #define DATA(x) .globl EXT(x) @ .align ALIGN @ LEXT(x)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/vmalloc/
H A Dvmprivate.c60 s = size + sizeof(Seg_t) + sizeof(Block_t) + sizeof(Head_t) + 2*ALIGN;
131 if((s = (size_t)(VLONG(addr)%ALIGN)) != 0)
132 addr += ALIGN-s;
136 seg->addr = (Void_t*)(addr - (s ? ALIGN-s : 0));
138 seg->baddr = addr + size - (s ? 2*ALIGN : 0);
H A Dvmhdr.h203 /* ALIGN is chosen so that a block can store all primitive types.
234 #undef ALIGN /* bsd sys/param.h defines this */ macro
235 #define ALIGN sizeof(struct _align_s) macro
237 /* make sure that the head of a block is a multiple of ALIGN */
251 #define HEADSIZE ROUND(sizeof(struct _head_s),ALIGN)
257 /* now make sure that the body of a block is a multiple of ALIGN */
264 #define BODYSIZE ROUND(sizeof(struct _body_s),ALIGN)
273 ** sizeof(Head_t)%ALIGN == 0
274 ** sizeof(Body_t)%ALIGN == 0
287 #define TINYSIZE ROUND(sizeof(struct _tiny_s),ALIGN)
[all...]
H A Dvmmopen.c35 #undef ALIGN /* some sys/param.h define this */ macro
45 #undef ALIGN macro
46 #define ALIGN sizeof(struct _align_s) macro
70 #define MMHEAD(file) ROUND(sizeof(Mmvm_t)+strlen(file), ALIGN)
173 size += MMHEAD(mmdc->file) + ALIGN;
H A Dvmstat.c77 { s = ROUND(s,ALIGN);
H A Dvmbest.c628 /**/ ASSERT((ALIGN%(BITS+1)) == 0 );
629 /**/ ASSERT((sizeof(Head_t)%ALIGN) == 0 );
630 /**/ ASSERT((sizeof(Body_t)%ALIGN) == 0 );
631 /**/ ASSERT((BODYSIZE%ALIGN) == 0 );
635 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
679 /**/ ASSERT((SIZE(tp)%ALIGN) == 0);
874 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
888 s = SIZE(np); /**/ASSERT(s%ALIGN == 0);
897 SIZE(rp) += (s += sizeof(Head_t)); /**/ASSERT((s%ALIGN) == 0);
1024 size = size <= BODYSIZE ? BODYSIZE : ROUND(size,ALIGN);
[all...]
/macosx-10.10.1/zlib-55/zlib/contrib/masmx86/
H A Dinffas32.asm78 ALIGN 4
84 ALIGN 4
88 ALIGN 4
93 ALIGN 4
98 ALIGN 4
104 ALIGN 4
165 ALIGN 4
324 ALIGN 4
491 ALIGN 4
511 ALIGN
[all...]
/macosx-10.10.1/zlib-55/zlib/contrib/masmx64/
H A Dinffasx64.asm81 ALIGN 4
130 ALIGN 4
217 ALIGN 4
237 ALIGN 4
251 ALIGN 4
265 ALIGN 4
292 ALIGN 4
321 ALIGN 4
337 ALIGN 4
/macosx-10.10.1/OpenSSL098-52/src/crypto/
H A Dx86_64cpuid.pl12 ALIGN 16
24 ALIGN 16
/macosx-10.10.1/Libc-1044.1.2/regex/TRE/lib/
H A Dtre-mem.c141 size += ALIGN(mem->ptr + size, long);
H A Dtre-match-parallel.c189 tmp_buf += ALIGN(tmp_buf, long);
192 tmp_buf += ALIGN(tmp_buf, long);
195 tmp_buf += ALIGN(tmp_buf, long);
198 tmp_buf += ALIGN(tmp_buf, long);
/macosx-10.10.1/vim-55/src/
H A DMake_bc5.mak79 # ALIGN 1, 2 or 4: Alignment to use (4 for Win32, 2 for DOS16)
201 ### ALIGN: alignment you desire: (1,2 or 4: s/b 4 for Win32, 2 for DOS)
202 !if ("$(ALIGN)"=="")
204 ALIGN = 2 macro
206 ALIGN = 4 macro
264 !if (($(ALIGN)+0)>2)
265 !error ALIGN Must be less than or equal to 2 for DOS16
419 ALIGNARG = -a$(ALIGN)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/libffi-src/x86/
H A Dx86-ffi64.c228 byte_offset = ALIGN(byte_offset, (*ptr)->alignment);
409 bytes = ALIGN(bytes, align);
424 cif->bytes = ALIGN(bytes,8);
489 argp = (void *) ALIGN (argp, align);
684 argp = (void *) ALIGN (argp, align);
H A Dx86-ffi_darwin.c65 argp = (char *) ALIGN(argp, sizeof(int));
289 argp = (char *) ALIGN(argp, sizeof(int));
/macosx-10.10.1/Libinfo-459/gen.subproj/
H A Dgetifaddrs.c65 #ifndef ALIGN
66 #define ALIGN(p) (((u_long)(p) + ALIGNBYTES) &~ ALIGNBYTES) macro
295 ift->ifa_data = data = (void *)ALIGN(data);
369 ift->ifa_data = data = (void *)ALIGN(data);
/macosx-10.10.1/libffi-18.1/x86/
H A Dx86-ffi64.c198 byte_offset = ALIGN(byte_offset, (*ptr)->alignment);
357 bytes = ALIGN(bytes, align);
436 argp = (void *) ALIGN (argp, align);
596 argp = (void *) ALIGN (argp, align);
H A Dx86-ffi_darwin.c63 argp = (char *) ALIGN(argp, sizeof(int));
287 argp = (char *) ALIGN(argp, sizeof(int));
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/libffi-src/x86/
H A Dx86-ffi64.c198 byte_offset = ALIGN(byte_offset, (*ptr)->alignment);
357 bytes = ALIGN(bytes, align);
436 argp = (void *) ALIGN (argp, align);
574 argp = (void *) ALIGN (argp, align);
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libffi-src/x86/
H A Dx86-ffi64.c198 byte_offset = ALIGN(byte_offset, (*ptr)->alignment);
357 bytes = ALIGN(bytes, align);
436 argp = (void *) ALIGN (argp, align);
574 argp = (void *) ALIGN (argp, align);
H A Dx86-ffi_darwin.c63 argp = (char *) ALIGN(argp, sizeof(int));
287 argp = (char *) ALIGN(argp, sizeof(int));
/macosx-10.10.1/dtrace-147/libelf/
H A Dgetdata.c109 #define ALIGN(elf) ((elf->ed_class == ELFCLASS32) ? align32 : align64) macro
280 % ALIGN(elf)[d->db_data.d_type]) == 0) {
/macosx-10.10.1/xnu-2782.1.97/osfmk/x86_64/
H A Dstart.s138 .align ALIGN
264 .align ALIGN
291 .align ALIGN
/macosx-10.10.1/netcat-22/
H A Dsourceroute.c148 *cpp = lsrp = (char *)ALIGN(buf);

Completed in 287 milliseconds

1234