| /trusted-firmware-a-latest/include/lib/cpus/aarch32/ |
| D | cpu_macros.S | 32 .word \_this 67 .word \_midr 69 .word \_resetfunc 96 .word \_name\()_errata_list_start 97 .word \_name\()_errata_list_end 108 .word 0 122 .word \_name\()_errata_report 123 .word \_name\()_cpu_str 127 .word \_name\()_errata_lock 128 .word \_name\()_errata_reported [all …]
|
| /trusted-firmware-a-latest/plat/rpi/rpi4/aarch64/ |
| D | armstub8_header.S | 23 .word 0x5afe570b 25 .word 0 27 .word 0x0 29 .word 0x0
|
| /trusted-firmware-a-latest/tools/nxp/create_pbl/ |
| D | create_pbl.c | 172 #define BYTE_SWAP_32(word) ((((word) & 0xff000000) >> 24)| \ argument 173 (((word) & 0x00ff0000) >> 8) | \ 174 (((word) & 0x0000ff00) << 8) | \ 175 (((word) & 0x000000ff) << 24)) 306 uint32_t word; in crypto_calculate_checksum() local 310 if ((fread(&word, sizeof(word), NUM_MEM_BLOCK, fp_rcw_pbi_op)) in crypto_calculate_checksum() 315 sum = sum + word; in crypto_calculate_checksum() 702 uint32_t word, word_1; in main() local 854 if (fread(&word, sizeof(word), NUM_MEM_BLOCK, fp_rcw_pbi_ip) in main() 860 while (BYTE_SWAP_32(word) != 0x08610040) { in main() [all …]
|
| D | byte_swap.c | 23 #define BYTE_SWAP_32(word) ((((word) & 0xff000000) >> 24)| \ argument 24 (((word) & 0x00ff0000) >> 8) | \ 25 (((word) & 0x0000ff00) << 8) | \ 26 (((word) & 0x000000ff) << 24))
|
| /trusted-firmware-a-latest/plat/hisilicon/hikey/ |
| D | hisi_pwrc_sram.S | 64 .word 0xE1A00000 // nop 65 .word 0xE3A02003 // mov r2, #3 66 .word 0xEE0C2F50 // mcr 15, 0, r2, cr12, cr0, {2} 67 .word 0xE320F003 // wfi
|
| /trusted-firmware-a-latest/lib/zlib/ |
| D | crc32.c | 113 local z_word_t byte_swap(z_word_t word) { in byte_swap() argument 116 (word & 0xff00000000000000) >> 56 | in byte_swap() 117 (word & 0xff000000000000) >> 40 | in byte_swap() 118 (word & 0xff0000000000) >> 24 | in byte_swap() 119 (word & 0xff00000000) >> 8 | in byte_swap() 120 (word & 0xff000000) << 8 | in byte_swap() 121 (word & 0xff0000) << 24 | in byte_swap() 122 (word & 0xff00) << 40 | in byte_swap() 123 (word & 0xff) << 56; in byte_swap() 126 (word & 0xff000000) >> 24 | in byte_swap() [all …]
|
| D | inflate.c | 426 # define CRC2(check, word) \ argument 428 hbuf[0] = (unsigned char)(word); \ 429 hbuf[1] = (unsigned char)((word) >> 8); \ 433 # define CRC4(check, word) \ argument 435 hbuf[0] = (unsigned char)(word); \ 436 hbuf[1] = (unsigned char)((word) >> 8); \ 437 hbuf[2] = (unsigned char)((word) >> 16); \ 438 hbuf[3] = (unsigned char)((word) >> 24); \
|
| /trusted-firmware-a-latest/plat/socionext/uniphier/ |
| D | uniphier_scp.c | 48 uint32_t word; in uniphier_scp_send_packet() local 53 word = 0; in uniphier_scp_send_packet() 56 word |= *packet++ << (8 * i); in uniphier_scp_send_packet() 58 mmio_write_32(reg, word); in uniphier_scp_send_packet()
|
| /trusted-firmware-a-latest/lib/compiler-rt/builtins/ |
| D | assembly.h | 103 .word 4 SEPARATOR \ 104 .word 16 SEPARATOR \ 105 .word NT_GNU_PROPERTY_TYPE_0 SEPARATOR \ 107 .word type SEPARATOR \ 108 .word 4 SEPARATOR \ 109 .word value SEPARATOR \ 110 .word 0 SEPARATOR \
|
| /trusted-firmware-a-latest/plat/rockchip/px30/drivers/pmu/ |
| D | plat_pmu_macros.S | 19 .word 0
|
| /trusted-firmware-a-latest/plat/rockchip/rk3328/drivers/pmu/ |
| D | plat_pmu_macros.S | 19 .word 0
|
| /trusted-firmware-a-latest/bl32/tsp/aarch64/ |
| D | tsp_request.S | 30 .word TSP_GET_ARGS
|
| /trusted-firmware-a-latest/plat/imx/common/include/sci/svc/misc/ |
| D | sci_misc_api.h | 462 sc_err_t sc_misc_otp_fuse_read(sc_ipc_t ipc, uint32_t word, uint32_t *val); 478 sc_err_t sc_misc_otp_fuse_write(sc_ipc_t ipc, uint32_t word, uint32_t val);
|
| /trusted-firmware-a-latest/plat/rockchip/common/pmusram/ |
| D | cpus_on_fixed_addr.S | 47 .word 0
|
| /trusted-firmware-a-latest/drivers/nxp/crypto/caam/src/ |
| D | jobdesc.c | 40 void desc_add_word(uint32_t *desc, uint32_t word) in desc_add_word() argument 48 *last = word; in desc_add_word()
|
| /trusted-firmware-a-latest/drivers/st/bsec/ |
| D | bsec2.c | 922 uint32_t bsec_shadow_read_otp(uint32_t *otp_value, uint32_t word) in bsec_shadow_read_otp() argument 926 result = bsec_shadow_register(word); in bsec_shadow_read_otp() 928 ERROR("BSEC: %u Shadowing Error %u\n", word, result); in bsec_shadow_read_otp() 932 result = bsec_read_otp(otp_value, word); in bsec_shadow_read_otp() 934 ERROR("BSEC: %u Read Error %u\n", word, result); in bsec_shadow_read_otp()
|
| /trusted-firmware-a-latest/plat/qti/msm8916/aarch32/ |
| D | msm8916_helpers.S | 145 .word 0
|
| /trusted-firmware-a-latest/include/drivers/st/ |
| D | bsec.h | 126 uint32_t bsec_shadow_read_otp(uint32_t *otp_value, uint32_t word);
|
| /trusted-firmware-a-latest/plat/mediatek/build_helpers/ |
| D | mtk_build_helpers.mk | 9 $(patsubst %/,%,$(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))))
|
| /trusted-firmware-a-latest/plat/ti/k3/common/ |
| D | k3_helpers.S | 47 .word K3_BOOT_REASON_COLD_RESET
|
| /trusted-firmware-a-latest/plat/rockchip/common/aarch32/ |
| D | plat_helpers.S | 162 .word 0
|
| /trusted-firmware-a-latest/plat/rockchip/common/aarch64/ |
| D | plat_helpers.S | 161 .word 0
|
| /trusted-firmware-a-latest/plat/rockchip/rk3399/drivers/pmu/ |
| D | plat_pmu_macros.S | 62 .word 0
|
| /trusted-firmware-a-latest/plat/imx/common/sci/svc/misc/ |
| D | misc_rpc_clnt.c | 391 sc_err_t sc_misc_otp_fuse_read(sc_ipc_t ipc, uint32_t word, uint32_t *val) in sc_misc_otp_fuse_read() argument 399 RPC_U32(&msg, 0U) = (uint32_t)word; in sc_misc_otp_fuse_read() 411 sc_err_t sc_misc_otp_fuse_write(sc_ipc_t ipc, uint32_t word, uint32_t val) in sc_misc_otp_fuse_write() argument 419 RPC_U32(&msg, 0U) = (uint32_t)word; in sc_misc_otp_fuse_write()
|
| /trusted-firmware-a-latest/lib/cpus/aarch64/ |
| D | wa_cve_2017_5715_bpiall.S | 114 .word EMIT_BPIALL 115 .word EMIT_SMC
|