Searched refs:_env (Results 1 – 2 of 2) sorted by relevance
/openbmc/qemu/target/arm/ |
H A D | cpu.h | 2654 #define A32_BANKED_REG_GET(_env, _regname, _secure) \ 2655 ((_secure) ? (_env)->cp15._regname##_s : (_env)->cp15._regname##_ns) 2657 #define A32_BANKED_REG_SET(_env, _regname, _secure, _val) \ 2660 (_env)->cp15._regname##_s = (_val); \ 2662 (_env)->cp15._regname##_ns = (_val); \ 2671 #define A32_BANKED_CURRENT_REG_GET(_env, _regname) \ 2672 A32_BANKED_REG_GET((_env), _regname, \ 2673 (arm_is_secure(_env) && !arm_el_is_aa64((_env), 2646 A32_BANKED_REG_GET(_env,_regname,_secure) global() argument 2649 A32_BANKED_REG_SET(_env,_regname,_secure,_val) global() argument 2663 A32_BANKED_CURRENT_REG_GET(_env,_regname) global() argument 2667 A32_BANKED_CURRENT_REG_SET(_env,_regname,_val) global() argument [all...] |
/openbmc/qemu/docs/sphinx/ |
H A D | qapidoc.py | 477 self._env = env 483 self._env.note_dependency(os.path.abspath(qapifile))
|