Lines Matching refs:depth
824 int depth = p->recursion_limit - p->recursion_remaining;
826 p->recursion_remaining = new_limit - depth;
836 int depth = tstate->recursion_limit - tstate->recursion_remaining;
837 if (depth < tstate->interp->ceval.recursion_limit) {
839 tstate->recursion_remaining = tstate->recursion_limit - depth;
860 "maximum recursion depth exceeded%s",
1264 can cost several CPU cycles (depending on the pipeline depth),
7054 _PyEval_SetCoroutineOriginTrackingDepth(int depth)
7057 if (depth < 0) {
7058 _PyErr_SetString(tstate, PyExc_ValueError, "depth must be >= 0");
7061 tstate->coroutine_origin_tracking_depth = depth;