Searched refs:_h (Results 1 – 3 of 3) sorted by relevance
/trusted-firmware-a/include/arch/aarch64/ |
A D | smccc_helpers.h | 19 #define SMC_RET0(_h) { \ argument 20 return (uint64_t) (_h); \ 22 #define SMC_RET1(_h, _x0) { \ argument 24 SMC_RET0(_h); \ 26 #define SMC_RET2(_h, _x0, _x1) { \ argument 28 SMC_RET1(_h, (_x0)); \ 32 SMC_RET2(_h, (_x0), (_x1)); \ 36 SMC_RET3(_h, (_x0), (_x1), (_x2)); \ 59 #define SMC_GET_GP(_h, _g) \ argument 61 #define SMC_SET_GP(_h, _g, _v) \ argument [all …]
|
/trusted-firmware-a/include/arch/aarch32/ |
A D | smccc_helpers.h | 114 #define SMC_RET0(_h) { \ argument 115 return (uintptr_t)(_h); \ 117 #define SMC_RET1(_h, _r0) { \ argument 118 ((smc_ctx_t *)(_h))->r0 = (_r0); \ 119 SMC_RET0(_h); \ 121 #define SMC_RET2(_h, _r0, _r1) { \ argument 122 ((smc_ctx_t *)(_h))->r1 = (_r1); \ 123 SMC_RET1(_h, (_r0)); \ 126 ((smc_ctx_t *)(_h))->r2 = (_r2); \ 127 SMC_RET2(_h, (_r0), (_r1)); \ [all …]
|
/trusted-firmware-a/include/lib/ |
A D | smccc.h | 197 #define SMC_UUID_RET(_h, _uuid) \ argument
|
Completed in 5 milliseconds