Searched refs:tstate (Results 1 – 12 of 12) sorted by relevance
| /openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-pybluez/ |
| H A D | py-3.11.patch | 283 +PyThreadState_GetInterpreter(PyThreadState *tstate) 285 + assert(tstate != NULL); 286 + return tstate->interp; 294 +PyThreadState_GetFrame(PyThreadState *tstate) 296 + assert(tstate != NULL); 297 + return (PyFrameObject *)Py_XNewRef(tstate->frame); 303 +_PyThreadState_GetFrameBorrow(PyThreadState *tstate) 305 + return (PyFrameObject *)_Py_XStealRef(PyThreadState_GetFrame(tstate)); 315 + PyThreadState *tstate; 318 + tstate = PyThreadState_GET(); [all …]
|
| /openbmc/qemu/target/sparc/ |
| H A D | win_helper.c | 427 cpu_put_ccr(env, tsptr->tstate >> 32); in helper_done() 428 env->asi = (tsptr->tstate >> 24) & 0xff; in helper_done() 429 cpu_change_pstate(env, (tsptr->tstate >> 8) & 0xf3f); in helper_done() 430 cpu_put_cwp64(env, tsptr->tstate & 0xff); in helper_done() 432 uint32_t new_gl = (tsptr->tstate >> 40) & 7; in helper_done() 456 cpu_put_ccr(env, tsptr->tstate >> 32); in helper_retry() 457 env->asi = (tsptr->tstate >> 24) & 0xff; in helper_retry() 458 cpu_change_pstate(env, (tsptr->tstate >> 8) & 0xf3f); in helper_retry() 459 cpu_put_cwp64(env, tsptr->tstate & 0xff); in helper_retry() 461 uint32_t new_gl = (tsptr->tstate >> 40) & 7; in helper_retry()
|
| H A D | cpu.h | 222 uint64_t tstate; member 771 uint64_t tstate = (cpu_get_ccr(env) << 32) | in sparc64_tstate() local 776 tstate |= (env->gl & 7ULL) << 40; in sparc64_tstate() 778 return tstate; in sparc64_tstate()
|
| H A D | int64_helper.c | 194 tsptr->tstate = sparc64_tstate(env); in sparc_cpu_do_interrupt()
|
| H A D | machine.c | 34 VMSTATE_UINT64(tstate, trap_state),
|
| H A D | translate.c | 3133 tcg_gen_ld_tl(dst, r_tsptr, offsetof(trap_state, tstate)); in do_rdtstate() 3501 tcg_gen_st_tl(src, r_tsptr, offsetof(trap_state, tstate)); in do_wrtstate()
|
| /openbmc/qemu/linux-user/sparc/ |
| H A D | signal.c | 130 __put_user(sparc64_tstate(env), ®s->tstate); in save_pt_regs() 155 uint64_t tstate; in restore_pt_regs() local 156 __get_user(tstate, ®s->tstate); in restore_pt_regs() 157 cpu_put_ccr(env, tstate >> 32); in restore_pt_regs() 158 env->asi = extract64(tstate, 24, 8); in restore_pt_regs() 591 target_ulong pc, npc, tstate; in sparc64_set_context() local 625 __get_user(tstate, &((*grp)[SPARC_MC_TSTATE])); in sparc64_set_context() 627 env->asi = (tstate >> 24) & 0xff; in sparc64_set_context() 628 cpu_put_ccr(env, (tstate >> 32) & 0xff); in sparc64_set_context()
|
| H A D | cpu_loop.c | 184 uint64_t tstate = sparc64_tstate(env); in do_getpsr() local 187 return ((tstate & TSTATE_CWP) | in do_getpsr() 189 ((tstate & TSTATE_ICC) >> 12) | in do_getpsr() 190 ((tstate & TSTATE_XCC) >> 20) | in do_getpsr()
|
| H A D | target_syscall.h | 7 abi_ulong tstate; member
|
| /openbmc/u-boot/drivers/qe/ |
| H A D | uec.h | 303 u32 tstate; member
|
| H A D | uec.c | 771 out_be32(&uec->p_tx_glbl_pram->tstate, ((u32)(bmrx) << BMR_SHIFT)); in uec_init_tx_parameter()
|
| /openbmc/u-boot/arch/powerpc/include/asm/ |
| H A D | cpm_8xx.h | 605 ulong tstate; /* Tx internal state */ member
|