Searched refs:_h (Results 1 – 3 of 3) sorted by relevance
/device/linaro/bootloader/arm-trusted-firmware/include/lib/aarch64/ |
D | smcc_helpers.h | 16 #define SMC_RET0(_h) { \ argument 17 return (uint64_t) (_h); \ 19 #define SMC_RET1(_h, _x0) { \ argument 20 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X0), (_x0)); \ 21 SMC_RET0(_h); \ 23 #define SMC_RET2(_h, _x0, _x1) { \ argument 24 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X1), (_x1)); \ 25 SMC_RET1(_h, (_x0)); \ 27 #define SMC_RET3(_h, _x0, _x1, _x2) { \ argument 28 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X2), (_x2)); \ [all …]
|
/device/linaro/bootloader/arm-trusted-firmware/include/lib/aarch32/ |
D | smcc_helpers.h | 105 #define SMC_RET0(_h) { \ argument 106 return (uintptr_t)(_h); \ 108 #define SMC_RET1(_h, _r0) { \ argument 109 ((smc_ctx_t *)(_h))->r0 = (_r0); \ 110 SMC_RET0(_h); \ 112 #define SMC_RET2(_h, _r0, _r1) { \ argument 113 ((smc_ctx_t *)(_h))->r1 = (_r1); \ 114 SMC_RET1(_h, (_r0)); \ 116 #define SMC_RET3(_h, _r0, _r1, _r2) { \ argument 117 ((smc_ctx_t *)(_h))->r2 = (_r2); \ [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_multiprocessing.py | 1177 def _h(self): member in FooBar 1225 self.assertEqual(bar._h(), '_h()')
|