Home
last modified time | relevance | path

Searched refs:word (Results 1 – 25 of 30) sorted by relevance

12

/trusted-firmware-a-latest/include/lib/cpus/aarch32/
Dcpu_macros.S32 .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/
Darmstub8_header.S23 .word 0x5afe570b
25 .word 0
27 .word 0x0
29 .word 0x0
/trusted-firmware-a-latest/tools/nxp/create_pbl/
Dcreate_pbl.c172 #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 …]
Dbyte_swap.c23 #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/
Dhisi_pwrc_sram.S64 .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/
Dcrc32.c113 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 …]
Dinflate.c426 # 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/
Duniphier_scp.c48 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/
Dassembly.h103 .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/
Dplat_pmu_macros.S19 .word 0
/trusted-firmware-a-latest/plat/rockchip/rk3328/drivers/pmu/
Dplat_pmu_macros.S19 .word 0
/trusted-firmware-a-latest/bl32/tsp/aarch64/
Dtsp_request.S30 .word TSP_GET_ARGS
/trusted-firmware-a-latest/plat/imx/common/include/sci/svc/misc/
Dsci_misc_api.h462 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/
Dcpus_on_fixed_addr.S47 .word 0
/trusted-firmware-a-latest/drivers/nxp/crypto/caam/src/
Djobdesc.c40 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/
Dbsec2.c922 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/
Dmsm8916_helpers.S145 .word 0
/trusted-firmware-a-latest/include/drivers/st/
Dbsec.h126 uint32_t bsec_shadow_read_otp(uint32_t *otp_value, uint32_t word);
/trusted-firmware-a-latest/plat/mediatek/build_helpers/
Dmtk_build_helpers.mk9 $(patsubst %/,%,$(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))))
/trusted-firmware-a-latest/plat/ti/k3/common/
Dk3_helpers.S47 .word K3_BOOT_REASON_COLD_RESET
/trusted-firmware-a-latest/plat/rockchip/common/aarch32/
Dplat_helpers.S162 .word 0
/trusted-firmware-a-latest/plat/rockchip/common/aarch64/
Dplat_helpers.S161 .word 0
/trusted-firmware-a-latest/plat/rockchip/rk3399/drivers/pmu/
Dplat_pmu_macros.S62 .word 0
/trusted-firmware-a-latest/plat/imx/common/sci/svc/misc/
Dmisc_rpc_clnt.c391 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/
Dwa_cve_2017_5715_bpiall.S114 .word EMIT_BPIALL
115 .word EMIT_SMC

12