Searched refs:aligned (Results 1 - 25 of 42) sorted by relevance

12

/macosx-10.5.8/xnu-1228.15.4/bsd/ppc/
H A Dsetjmp.h49 unsigned int __vmask __attribute__((aligned(8))); /* vector mask register */
50 unsigned int __vreg[32 * 4] __attribute__((aligned(16)));
54 unsigned int vmask __attribute__((aligned(8))); /* vector mask register */
55 unsigned int vreg[32 * 4] __attribute__((aligned(16)));
65 * 2 ints to get all the elements aligned
85 int __storage[_JBLEN32 + 1] __attribute__((aligned(8)));
90 int __storage[_JBLEN64 + 1] __attribute__((aligned(8)));
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/
H A Dktss.c71 __attribute__ ((aligned (4096))) = {
111 __attribute__ ((aligned (16))) = { {0}, 0 };
114 struct x86_64_tss master_ktss64 __attribute__ ((aligned (4096))) = {
124 __attribute__ ((aligned (4096))) = {
162 __attribute__ ((aligned (4096))) = {
198 __attribute__ ((aligned (4096))) = {
H A Dmp_desc.h87 struct fake_descriptor idt[IDTSZ] __attribute__ ((aligned (16)));
88 struct fake_descriptor gdt[GDTSZ] __attribute__ ((aligned (16)));
89 struct i386_tss ktss __attribute__ ((aligned (16)));
90 struct i386_tss dbtss __attribute__ ((aligned (16)));
95 struct fake_descriptor64 idt[IDTSZ] __attribute__ ((aligned (16)));
96 struct fake_descriptor gdt[GDTSZ] __attribute__ ((aligned (16)));
97 struct x86_64_tss ktss __attribute__ ((aligned (16)));
98 struct sysenter_stack sstk __attribute__ ((aligned (16)));
99 uint8_t dfstk[PAGE_SIZE] __attribute__ ((aligned (16)));
H A Dldt.c69 struct fake_descriptor master_ldt[LDTSZ] __attribute__ ((aligned (4096))) = {
H A Dgdt.c69 struct fake_descriptor master_gdt[GDTSZ] __attribute__ ((aligned (4096))) = {
H A Dthread.h105 struct x86_fx_save fx_save_state __attribute__ ((aligned (16)));
125 * Kernel stacks are 16-byte aligned with a 4-byte i386_exception_link at
127 * been pushed, we want to be 16-byte aligned. A dummy int gets us there.
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_format.h134 } __attribute__((aligned(2), packed));
154 } __attribute__((aligned(2), packed));
164 } __attribute__((aligned(2), packed));
177 } __attribute__((aligned(2), packed));
184 } __attribute__((aligned(2), packed));
204 } __attribute__((aligned(2), packed));
220 } __attribute__((aligned(2), packed));
225 } __attribute__((aligned(2), packed));
235 } __attribute__((aligned(2), packed));
255 } __attribute__((aligned(
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/isofs/cd9660/
H A Dcd9660_mount.h104 user_addr_t toc __attribute((aligned(8)));
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Daio.h78 off_t aio_offset __attribute((aligned(8))); /* File offset */
79 user_addr_t aio_buf __attribute((aligned(8))); /* Location of buffer */
82 struct user_sigevent aio_sigevent __attribute((aligned(8))); /* Signal number and value */
H A Dvm.h111 user_addr_t vm_shm __attribute((aligned(8))); /* SYS5 shared memory private data XXX */
117 user_addr_t vm_taddr __attribute((aligned(8))); /* user virtual address of text XXX */
H A Dproc_internal.h435 user_addr_t user_stack __attribute((aligned(8))); /* where user stack was allocated */
443 user_addr_t p_wchan __attribute((aligned(8))); /* Sleep address. */
453 user_addr_t p_tracep __attribute((aligned(8))); /* Trace to vnode. */
455 user_addr_t p_textvp __attribute((aligned(8))); /* Vnode of executable. */
464 user_addr_t p_pgrp __attribute((aligned(8))); /* Pointer to process group. */
468 user_addr_t p_ru __attribute((aligned(8))); /* Exit information. XXX */
H A Dresource.h183 __darwin_suseconds_t tv_usec __attribute((aligned(8))); /* and microseconds */
H A Dsocket.h518 user_addr_t msg_iov __attribute((aligned(8))); /* scatter/gather array */
520 user_addr_t msg_control __attribute((aligned(8))); /* ancillary data, see below */
671 user_addr_t headers __attribute((aligned(8))); /* pointer to an array of header struct iovec's */
673 user_addr_t trailers __attribute((aligned(8))); /* pointer to an array of trailer struct iovec's */
H A Dmount_internal.h317 user_long_t f_bsize __attribute((aligned(8))); /* fundamental file system block size */
338 user_long_t f_reserved4[4] __attribute((aligned(8))); /* For future use */
/macosx-10.5.8/xnu-1228.15.4/EXTERNAL_HEADERS/architecture/ppc/
H A Dfp_regs.h51 * This struct is aligned to an 8-byte boundary because 64-bit
56 unsigned unused[1] __attribute__(( aligned(8) ));
114 unsigned x[2] __attribute__(( aligned(8) ));
/macosx-10.5.8/xnu-1228.15.4/pexpert/pexpert/i386/
H A Dboot.h111 } __attribute__((aligned(4)));
151 } __attribute__((aligned(4))) boot_args;
H A Defi.h207 } __attribute__((aligned(8))) EFI_TABLE_HEADER;
241 } __attribute__((aligned(8))) EFI_MEMORY_DESCRIPTOR;
308 } __attribute__((aligned(4))) EFI_TIME_CAPABILITIES;
441 } __attribute__((aligned(8))) EFI_RUNTIME_SERVICES;
482 } __attribute__((aligned(8))) EFI_RUNTIME_SERVICES_64;
495 } __attribute__((aligned(8))) EFI_CONFIGURATION_TABLE_64;
527 } __attribute__((aligned(8))) EFI_SYSTEM_TABLE;
552 } __attribute__((aligned(8))) EFI_SYSTEM_TABLE_64;
/macosx-10.5.8/xnu-1228.15.4/EXTERNAL_HEADERS/architecture/i386/
H A Dreg_help.h76 * Register pairs are appropriately aligned to allow access via
92 type0 name0 __attribute__(( aligned(8) )); \
/macosx-10.5.8/xnu-1228.15.4/bsd/net/
H A Dndrv.h132 user_addr_t demux_list __attribute__((aligned(8)));
/macosx-10.5.8/xnu-1228.15.4/osfmk/mach/machine/
H A Dsdt.h46 uintptr_t __dtrace_args[ARG1_EXTENT] __attribute__ ((aligned (16))); \
52 uintptr_t __dtrace_args[ARGS2_EXTENT] __attribute__ ((aligned (16))); \
59 uintptr_t __dtrace_args[ARGS3_EXTENT] __attribute__ ((aligned (16))); \
67 uintptr_t __dtrace_args[ARGS4_EXTENT] __attribute__ ((aligned (16))); \
76 uintptr_t __dtrace_args[ARGS5_EXTENT] __attribute__ ((aligned (16))); \
86 uintptr_t __dtrace_args[ARGS6_EXTENT] __attribute__ ((aligned (16))); \
97 uintptr_t __dtrace_args[ARGS7_EXTENT] __attribute__ ((aligned (16))); \
109 uintptr_t __dtrace_args[ARGS8_EXTENT] __attribute__ ((aligned (16))); \
122 uintptr_t __dtrace_args[ARGS9_EXTENT] __attribute__ ((aligned (16))); \
136 uintptr_t __dtrace_args[ARGS10_EXTENT] __attribute__ ((aligned (1
[all...]
/macosx-10.5.8/xnu-1228.15.4/libkern/ppc/
H A Dstrlen.s59 bne LalignSource ; align the source addr if not already aligned
103 bgt Llentry ; address is aligned now if low bits were 3
109 beq Llentry ; addr is aligned now if low bits were 2
114 bne cr1,Llentry ; not zero, continue check (now aligned)
/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs.h240 user_addr_t addr __attribute((aligned(8))); /* file server address */
244 user_addr_t fh __attribute((aligned(8))); /* File handle to be mounted */
256 user_addr_t hostname __attribute((aligned(8))); /* server's name */
267 user_addr_t addr __attribute((aligned(8))); /* file server address */
271 user_addr_t fh __attribute((aligned(8))); /* File handle to be mounted */
283 user_addr_t hostname __attribute((aligned(8))); /* server's name */
292 user_addr_t addr __attribute((aligned(8))); /* file server address */
296 user_addr_t fh __attribute((aligned(8))); /* File handle to be mounted */
308 user_addr_t hostname __attribute((aligned(8))); /* server's name */
360 user_addr_t name __attribute((aligned(
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/ppc/
H A Dxsumas.s66 cmpwi cr6,r2,0 ; is address word aligned?
72 beq cr6,Laligned ; skip if already word aligned (r2==0 if aligned)
87 ; Address is now word aligned. Prepare for inner loop over 32-byte chunks.
89 ; r3 = word aligned address
135 ; r3 = word aligned address
242 ; r3 = word aligned address
329 ; r3 = word aligned address of next byte of data
385 ; r3 = word aligned address of next byte of data
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dbits.s78 # Assumes pointer is word-aligned
/macosx-10.5.8/xnu-1228.15.4/bsd/netat/
H A Dsysglue.h71 user_addr_t ic_dp __attribute__((aligned(8)));

Completed in 151 milliseconds

12