Home
last modified time | relevance | path

Searched refs:new_depth (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/internal/
Dpycore_ceval.h32 int new_depth);
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_nir_passes.c420 nir_ssa_def *new_depth = nir_fneg(b, old_depth); in invert_depth_impl() local
422 new_depth = nir_fadd_imm(b, new_depth, 1.0); in invert_depth_impl()
426 new_depth, in invert_depth_impl()
/third_party/python/Python/
Dceval.c5605 _PyEval_SetCoroutineOriginTrackingDepth(PyThreadState *tstate, int new_depth) in _PyEval_SetCoroutineOriginTrackingDepth() argument
5607 assert(new_depth >= 0); in _PyEval_SetCoroutineOriginTrackingDepth()
5608 tstate->coroutine_origin_tracking_depth = new_depth; in _PyEval_SetCoroutineOriginTrackingDepth()
Dcompile.c6522 int new_depth = depth + effect; in stackdepth() local
6523 if (new_depth > maxdepth) { in stackdepth()
6524 maxdepth = new_depth; in stackdepth()
6537 depth = new_depth; in stackdepth()