Home
last modified time | relevance | path

Searched refs:b (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/rk3399_ARM-atf/services/std_svc/spm/common/aarch64/
H A Dspm_shim_exceptions.S25 b .
29 b .
33 b .
37 b .
45 b .
49 b .
53 b .
57 b .
72 b.eq do_smc
75 b.eq do_smc
[all …]
/rk3399_ARM-atf/bl2/aarch32/
H A Dbl2_el3_exceptions.S14 b bl2_entrypoint
15 b report_exception /* Undef */
16 b report_exception /* SVC call */
17 b report_prefetch_abort /* Prefetch abort */
18 b report_data_abort /* Data abort */
19 b report_exception /* Reserved */
20 b report_exception /* IRQ */
21 b report_exception /* FIQ */
H A Dbl2_entrypoint.S16 b bl2_entrypoint
17 b report_exception /* Undef */
18 b report_exception /* SVC call */
19 b report_prefetch_abort /* Prefetch abort */
20 b report_data_abort /* Data abort */
21 b report_exception /* Reserved */
22 b report_exception /* IRQ */
23 b report_exception /* FIQ */
/rk3399_ARM-atf/lib/cpus/aarch64/
H A Dwa_cve_2022_23960_bhb_vector.S26 b sync_exception_sp_el0
30 b irq_sp_el0
34 b fiq_sp_el0
38 b serror_sp_el0
46 b sync_exception_sp_elx
50 b irq_sp_elx
54 b fiq_sp_elx
58 b serror_sp_elx
67 b sync_exception_aarch64
72 b irq_aarch64
[all …]
H A Dwa_cve_2017_5715_mmu.S71 b sync_exception_sp_el0
75 b irq_sp_el0
79 b fiq_sp_el0
83 b serror_sp_el0
91 b sync_exception_sp_elx
95 b irq_sp_elx
99 b fiq_sp_elx
103 b serror_sp_elx
112 b sync_exception_aarch64
117 b irq_aarch64
[all …]
H A Dwa_cve_2017_5715_bpiall.S103 b sync_exception_sp_el0
120 b irq_sp_el0
124 b fiq_sp_el0
128 b serror_sp_el0
136 b sync_exception_sp_elx
140 b irq_sp_elx
144 b fiq_sp_elx
148 b serror_sp_elx
205 b report_unhandled_exception
209 b report_unhandled_interrupt
[all …]
H A Ddenver.S64 b sync_exception_sp_el0
68 b irq_sp_el0
72 b fiq_sp_el0
76 b serror_sp_el0
84 b sync_exception_sp_elx
88 b irq_sp_elx
92 b fiq_sp_elx
96 b serror_sp_elx
105 b sync_exception_aarch64
110 b irq_aarch64
[all …]
/rk3399_ARM-atf/lib/aarch64/
H A Dmisc_helpers.S59 b .Lzeromem_dczva_fallback_entry
205 b.lo .Lzeromem_dczva_fallback_entry
226 b.eq .Lzeromem_dczva_blocksize_aligned
247 b.hi .Lzeromem_dczva_fallback_entry
255 b.eq .Lzeromem_dczva_initial_1byte_aligned_end
271 b.ne 1b
280 b.hs 2f
284 b.lo 1b
299 b.hs 2f
306 b.lo 1b
[all …]
H A Darmclang_printf.S17 b printf
21 b printf
25 b printf
29 b snprintf
/rk3399_ARM-atf/plat/intel/soc/common/lib/sha/
H A Dsha.h21 #define GET_UINT64_BE(n, b, i) { \ argument
22 (n) = ((unsigned long long) (b)[(i)] << 56) |\
23 ((unsigned long long) (b)[(i) + 1] << 48) |\
24 ((unsigned long long) (b)[(i) + 2] << 40) |\
25 ((unsigned long long) (b)[(i) + 3] << 32) |\
26 ((unsigned long long) (b)[(i) + 4] << 24) |\
27 ((unsigned long long) (b)[(i) + 5] << 16) |\
28 ((unsigned long long) (b)[(i) + 6] << 8) |\
29 ((unsigned long long) (b)[(i) + 7]);\
32 #define PUT_UINT64_BE(n, b, i) { \ argument
[all …]
/rk3399_ARM-atf/bl31/aarch64/
H A Druntime_exceptions.S67 b.eq 1f
69 b 2f
101 b.eq smc_handler32
104 b.eq sync_handler64
107 b.eq sync_handler64
110 b.eq imp_def_el3_handler
116 b.eq 1f
117 b handle_lower_el_sync_ea
121 b report_unhandled_exception
139 b.eq brk_handler
[all …]
/rk3399_ARM-atf/bl1/aarch32/
H A Dbl1_entrypoint.S23 b bl1_entrypoint
24 b report_exception /* Undef */
25 b bl1_aarch32_smc_handler /* SMC call */
26 b report_prefetch_abort /* Prefetch abort */
27 b report_data_abort /* Data abort */
28 b report_exception /* Reserved */
29 b report_exception /* IRQ */
30 b report_exception /* FIQ */
/rk3399_ARM-atf/bl32/tsp/aarch64/
H A Dtsp_exceptions.S83 b plat_panic_handler
87 b plat_panic_handler
91 b plat_panic_handler
95 b plat_panic_handler
105 b plat_panic_handler
117 b plat_panic_handler
127 b plat_panic_handler
131 b plat_panic_handler
135 b plat_panic_handler
139 b plat_panic_handler
[all …]
/rk3399_ARM-atf/lib/compiler-rt/builtins/
H A Dlshrdi3.c19 COMPILER_RT_ABI di_int __lshrdi3(di_int a, int b) { in __lshrdi3() argument
24 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */ { in __lshrdi3()
26 result.s.low = input.s.high >> (b - bits_in_word); in __lshrdi3()
28 if (b == 0) in __lshrdi3()
30 result.s.high = input.s.high >> b; in __lshrdi3()
31 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b); in __lshrdi3()
H A Ddivmoddi4.c17 COMPILER_RT_ABI di_int __divmoddi4(di_int a, di_int b, di_int *rem) { in __divmoddi4() argument
20 di_int s_b = b >> bits_in_dword_m1; // s_b = b < 0 ? -1 : 0 in __divmoddi4()
22 b = (du_int)(b ^ s_b) - s_b; // negate if s_b == -1 in __divmoddi4()
25 di_int q = (__udivmoddi4(a, b, &r) ^ s_b) - s_b; // negate if s_b == -1 in __divmoddi4()
H A Ddivdi3.c19 #define COMPUTE_UDIV(a, b) __udivmoddi4((a), (b), (du_int *)0) argument
22 COMPILER_RT_ABI di_int __divdi3(di_int a, di_int b) { return __divXi3(a, b); } in __divdi3() argument
/rk3399_ARM-atf/drivers/marvell/uart/
H A Da3700_console.S57 b.ne 4f
64 b.ne 3b
69 b.ne 2b
90 b.ne 1b
165 b.ne 2f
170 b.eq 1b
178 b.eq 2b
198 b console_a3700_core_putc
216 b.ne getc_no_char
237 b console_a3700_core_getc
[all …]
/rk3399_ARM-atf/bl2u/aarch32/
H A Dbl2u_entrypoint.S16 b bl2u_entrypoint
17 b report_exception /* Undef */
18 b report_exception /* SVC call */
19 b report_prefetch_abort /* Prefetch abort */
20 b report_data_abort /* Data abort */
21 b report_exception /* Reserved */
22 b report_exception /* IRQ */
23 b report_exception /* FIQ */
/rk3399_ARM-atf/plat/nxp/common/aarch64/
H A Dls_helpers.S58 b console_putc
65 b console_flush
75 b plat_core_pos
85 b plat_core_mask
107 b.ge 1f
109 b.ge 1f
126 b plat_core_pos
146 b.ge 1f
148 b.ge 1f
168 b.ne 1f
[all …]
/rk3399_ARM-atf/plat/rockchip/rk3399/drivers/m0/include/
H A Drk3399_mcu.h25 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument
26 #define MAX(a, b) ((a) > (b) ? (a) : (b)) argument
/rk3399_ARM-atf/plat/common/aarch64/
H A Dplatform_helpers.S70 b plat_panic_handler
80 b enable_mmu_direct_el3
90 b enable_mmu_direct_el1
102 b report_unhandled_exception
113 b report_unhandled_exception
121 b report_unhandled_exception
/rk3399_ARM-atf/include/drivers/nxp/ddr/
H A Dddr_io.h15 #define min(a, b) (((a) > (b)) ? (b) : (a)) argument
17 #define max(a, b) (((a) > (b)) ? (a) : (b)) argument
/rk3399_ARM-atf/plat/qti/common/src/aarch64/
H A Dqti_uart_console.S52 b.eq 1b
56 b.ne 3f
71 b.eq 2b
98 b.eq 1b
/rk3399_ARM-atf/plat/qti/msm8916/aarch64/
H A Duartdm_console.S79 b.ne 1b
117 b console_uartdm_core_putc
131 b.ne 2f
135 tbz w2, #UART_DM_SR_TXRDY_BIT, 1b
143 tbz w2, #UART_DM_SR_TXRDY_BIT, 2b
161 b console_uartdm_core_flush
177 tbz w2, #UART_DM_SR_TXEMT_BIT, 1b
/rk3399_ARM-atf/common/aarch64/
H A Ddebug.S85 b.ne _assert_loop
106 b 1b
127 b.lo 2f
135 cbnz x5, 1b
145 b plat_crash_console_putc
157 b report_elx_panic
160 b panic_common
172 b report_el3_panic
200 b plat_panic_handler

12345678910>>...12