Searched refs:ceval (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Python/ |
H A D | ceval_gil.h | 146 drop_gil(struct _ceval_runtime_state *ceval, struct _ceval_state *ceval2, in drop_gil() argument 149 struct _gil_runtime_state *gil = &ceval->gil; in drop_gil() 231 struct _ceval_runtime_state *ceval = &interp->runtime->ceval; in take_gil() local 232 struct _ceval_state *ceval2 = &interp->ceval; in take_gil() 233 struct _gil_runtime_state *gil = &ceval->gil; in take_gil() 307 drop_gil(ceval, ceval2, tstate); in take_gil() 321 COMPUTE_EVAL_BREAKER(interp, ceval, ceval2); in take_gil() 336 struct _gil_runtime_state *gil = &_PyRuntime.ceval.gil; in _PyEval_SetSwitchInterval() 342 struct _gil_runtime_state *gil = &_PyRuntime.ceval in _PyEval_GetSwitchInterval() [all...] |
H A D | ceval.c | 44 # error "ceval.c must be build with Py_BUILD_CORE define for best performance" 239 struct _ceval_runtime_state *ceval, in COMPUTE_EVAL_BREAKER() 244 | (_Py_atomic_load_relaxed_int32(&ceval->signals_pending) in COMPUTE_EVAL_BREAKER() 255 struct _ceval_state *ceval2 = &interp->ceval; in SET_GIL_DROP_REQUEST() 264 struct _ceval_runtime_state *ceval = &interp->runtime->ceval; in RESET_GIL_DROP_REQUEST() local 265 struct _ceval_state *ceval2 = &interp->ceval; in RESET_GIL_DROP_REQUEST() 267 COMPUTE_EVAL_BREAKER(interp, ceval, ceval2); in RESET_GIL_DROP_REQUEST() 274 struct _ceval_runtime_state *ceval = &interp->runtime->ceval; in SIGNAL_PENDING_CALLS() local 238 COMPUTE_EVAL_BREAKER(PyInterpreterState *interp, struct _ceval_runtime_state *ceval, struct _ceval_state *ceval2) COMPUTE_EVAL_BREAKER() argument 284 struct _ceval_runtime_state *ceval = &interp->runtime->ceval; UNSIGNAL_PENDING_CALLS() local 294 struct _ceval_runtime_state *ceval = &interp->runtime->ceval; SIGNAL_PENDING_SIGNALS() local 310 struct _ceval_runtime_state *ceval = &interp->runtime->ceval; UNSIGNAL_PENDING_SIGNALS() local 329 struct _ceval_runtime_state *ceval = &interp->runtime->ceval; UNSIGNAL_ASYNC_EXC() local 438 struct _ceval_runtime_state *ceval = &runtime->ceval; PyEval_ReleaseLock() local 446 struct _ceval_runtime_state *ceval = &tstate->interp->runtime->ceval; _PyEval_ReleaseLock() local 474 struct _ceval_runtime_state *ceval = &runtime->ceval; PyEval_ReleaseThread() local 523 struct _ceval_runtime_state *ceval = &runtime->ceval; PyEval_SaveThread() local 787 _PyEval_InitRuntimeState(struct _ceval_runtime_state *ceval) _PyEval_InitRuntimeState() argument 793 _PyEval_InitState(struct _ceval_state *ceval, PyThread_type_lock pending_lock) _PyEval_InitState() argument 802 _PyEval_FiniState(struct _ceval_state *ceval) _PyEval_FiniState() argument 1184 struct _ceval_runtime_state *ceval = &runtime->ceval; eval_frame_handle_pending() local [all...] |
H A D | pystate.c | 114 _PyEval_InitRuntimeState(&runtime->ceval); in init_runtime() 293 _PyEval_InitState(&interp->ceval, pending_lock); in init_interpreter() 495 _PyEval_FiniState(&interp->ceval); in PyInterpreterState_Delete() 792 tstate->recursion_limit = interp->ceval.recursion_limit, in init_threadstate() 793 tstate->recursion_remaining = interp->ceval.recursion_limit, in init_threadstate()
|
/third_party/python/Include/internal/ |
H A D | pycore_runtime.h | 18 /* ceval state */ 115 struct _ceval_runtime_state ceval; member
|
H A D | pycore_ceval.h | 33 extern void _PyEval_FiniState(struct _ceval_state *ceval);
|
H A D | pycore_interp.h | 115 struct _ceval_state ceval; member
|
H A D | pycore_runtime_init.h | 53 .ceval = { \
|
Completed in 10 milliseconds