Searched refs:unaligned (Results 1 – 17 of 17) sorted by relevance
/u-boot/doc/ |
A D | README.unaligned-memory-access.txt | 9 unaligned accesses, why you need to write code that doesn't cause them, 13 The definition of an unaligned access 19 reading 4 bytes of data from address 0x10005 would be an unaligned memory 46 Why unaligned access is bad 53 - Some architectures are able to perform unaligned memory accesses 60 unaligned access to be corrected. 70 Code that does not cause unaligned access 130 lead to unaligned accesses when accessing fields that do not satisfy 139 Code that causes unaligned access 167 (Hint: it'd be an unaligned access.) [all …]
|
A D | README.displaying-bmps | 4 Some architectures cannot handle unaligned memory accesses, and an attempt to 24 the __u32 fields into unaligned addresses (in our example 0x80a00002,
|
/u-boot/doc/usage/ |
A D | exception.rst | 26 unaligned 34 unaligned
|
/u-boot/arch/arm/cpu/armv7m/ |
A D | config.mk | 6 PLATFORM_CPPFLAGS += -mno-unaligned-access
|
/u-boot/arch/arm/cpu/armv7/ |
A D | config.mk | 10 PF_NO_UNALIGNED := $(call cc-option, -mno-unaligned-access,)
|
/u-boot/cmd/riscv/ |
A D | exception.c | 31 U_BOOT_CMD_MKENT(unaligned, CONFIG_SYS_MAXARGS, 1, do_unaligned,
|
/u-boot/lib/efi_selftest/ |
A D | efi_selftest_unaligned.c | 62 EFI_UNIT_TEST(unaligned) = {
|
/u-boot/cmd/arm/ |
A D | exception.c | 47 U_BOOT_CMD_MKENT(unaligned, CONFIG_SYS_MAXARGS, 1, do_unaligned,
|
/u-boot/arch/arm/cpu/arm11/ |
A D | sctlr.S | 21 orr r0, r0, #1 << 22 @ set unaligned data support flag
|
/u-boot/doc/device-tree-bindings/mtd/ |
A D | mtd-physmap.txt | 19 - no-unaligned-direct-access: boolean to disable the default direct 23 unaligned accesses as implemented in the JFFS2 code via memcpy(). 24 By defining "no-unaligned-direct-access", the flash will not be
|
/u-boot/drivers/xen/ |
A D | pvblock.c | 607 bool unaligned; in pvblock_iop() local 618 unaligned = (uintptr_t)buffer & (blk_dev->info.sector_size - 1); in pvblock_iop() 626 aiocb.aio_buf = unaligned ? blk_dev->bounce_buffer : buffer; in pvblock_iop() 628 if (write && unaligned) in pvblock_iop() 631 aiocb.aio_nbytes = unaligned ? desc->blksz : in pvblock_iop() 637 if (!write && unaligned) in pvblock_iop()
|
/u-boot/common/ |
A D | avb_verify.c | 267 bool unaligned = is_buf_unaligned(buffer); in mmc_read_and_flush() local 284 if (unaligned) { in mmc_read_and_flush() 299 if (unaligned) in mmc_read_and_flush() 310 bool unaligned = is_buf_unaligned(buffer); in mmc_write() local 321 if (unaligned) { in mmc_write()
|
/u-boot/arch/arm/lib/ |
A D | memset.S | 21 ands r3, r0, #3 @ 1 unaligned?
|
/u-boot/doc/arch/ |
A D | nds32.rst | 25 - Multiple aligned and unaligned memory accesses for memory copy and stack
|
/u-boot/drivers/video/ |
A D | Kconfig | 897 bool "Support unaligned BMP images" 906 abort. If you think you will not have problems with unaligned
|
/u-boot/doc/board/sipeed/ |
A D | maix.rst | 84 to intercept run-time exceptions, e.g. for unaligned access or illegal
|
/u-boot/arch/arm/dts/ |
A D | dra7.dtsi | 336 ti,syscon-unaligned-access = <&scm_conf1 0x14 2>;
|
Completed in 26 milliseconds