Searched refs:align (Results 1 - 25 of 160) sorted by relevance

1234567

/u-boot/include/
H A Dmemalign.h11 * is used to align DMA buffers.
72 #define ALLOC_ALIGN_BUFFER_PAD(type, name, size, align, pad) \
73 char __##name[ROUND(PAD_SIZE((size) * sizeof(type), pad), align) \
74 + (align - 1)]; \
76 type *name = (type *)ALIGN((uintptr_t)__##name, align)
77 #define ALLOC_ALIGN_BUFFER(type, name, size, align) \
78 ALLOC_ALIGN_BUFFER_PAD(type, name, size, align, 1)
89 #define DEFINE_ALIGN_BUFFER(type, name, size, align) \
90 static char __##name[ALIGN(size * sizeof(type), align)] \
91 __aligned(align); \
[all...]
H A Dvirtio_ring.h142 static inline unsigned int vring_size(unsigned int num, unsigned long align) argument
145 sizeof(__virtio16) * (3 + num) + align - 1) & ~(align - 1)) +
150 unsigned long align,
154 vr->size = vring_size(num, align);
159 sizeof(__virtio16) + align - 1) & ~(align - 1));
149 vring_init(struct vring *vr, unsigned int num, void *p, unsigned long align, struct bounce_buffer *bouncebufs) argument
/u-boot/board/xilinx/zynqmp/
H A Dpm_cfg_obj.S11 .align 4
/u-boot/arch/arm/mach-apple/
H A Dlowlevel_init.S6 .align 8
/u-boot/arch/riscv/lib/
H A Dsemihosting.S11 .align 2
/u-boot/tools/binman/btool/
H A Dmkimage.py25 pad=None, align=None):
36 align: Bytes to use for alignment of the FIT and its external data
44 if align:
45 args += ['-B', f'{align:x}']
/u-boot/board/freescale/ls1021aiot/
H A Dpsci.S17 .align 5
/u-boot/board/freescale/ls1021atwr/
H A Dpsci.S17 .align 5
/u-boot/arch/arc/cpu/arcv1/
H A Divt.S7 .align 4
/u-boot/arch/arm/cpu/armv8/
H A Dspin_table_v8.S17 .align 3
H A Dexceptions.S35 .align 11
38 .align 7 /* Current EL Synchronous Thread */
65 .align 7 /* Current EL IRQ Thread */
95 .align 7 /* Current EL FIQ Thread */
114 .align 7 /* Current EL Error Thread */
143 .align 7 /* Current EL (SP_ELx) Synchronous Handler */
149 .align 7 /* Current EL (SP_ELx) IRQ Handler */
155 .align 7 /* Current EL (SP_ELx) FIQ Handler */
161 .align 7 /* Current EL (SP_ELx) Error Handler */
H A Dpsci.S47 .align 3
86 .align 3
280 .align 11
284 .align 7
286 .align 7
288 .align 7
290 .align 7
292 .align 7
294 .align 7
296 .align
[all...]
H A Dconfig.mk7 PF_NO_UNALIGNED := $(call cc-option, -mstrict-align)
/u-boot/arch/arm/mach-imx/imx8/
H A Dlowlevel_init.S8 .align 8
/u-boot/board/intel/edison/
H A Dconfig.mk13 INPUTS-y += u-boot-align.bin
14 u-boot-align.bin: u-boot.bin
/u-boot/arch/arm/mach-imx/imx8ulp/
H A Dlowlevel_init.S8 .align 8
/u-boot/arch/arm/mach-imx/imx9/
H A Dlowlevel_init.S8 .align 8
/u-boot/arch/arm/mach-versatile/
H A Dreset.S16 .align 5
/u-boot/arch/arc/cpu/arcv2/
H A Divt.S7 .align 4
/u-boot/arch/mips/mach-octeon/include/mach/
H A Dcvmx-range.h10 int cvmx_range_alloc(u64 range_addr, uint64_t owner, uint64_t cnt, int align);
11 int cvmx_range_alloc_ordered(u64 range_addr, uint64_t owner, u64 cnt, int align,
/u-boot/arch/x86/cpu/x86_64/
H A Dsetjmp.S11 .align 8
29 .align 8
/u-boot/arch/arm/include/asm/arch-rockchip/
H A Dboot0.h52 .align(5), 0x0
/u-boot/tools/binman/etype/
H A Dintel_fit.py27 self.align = 16
/u-boot/arch/arm/cpu/armv8/xen/
H A Dlowlevel_init.S9 .align 8
/u-boot/arch/arm/mach-octeontx/
H A Dlowlevel_init.S12 .align 8

Completed in 114 milliseconds

1234567