Home | History | Annotate | Download | only in processor

Lines Matching full:recursor

37 //  - stack frame reuse.  The Recursor function here calls itself with
38 // |return Recursor|. When the caller's frame is reused, it will cause
380 // Recursor verifies that the number stack frames beneath itself is one more
382 // have been reached, Recursor stops checking and returns success. If the
383 // frame count check fails at any depth, Recursor will stop and return false.
386 static bool Recursor(unsigned int depth, unsigned int parent_callers)
389 static bool Recursor(unsigned int depth, unsigned int parent_callers);
391 static bool Recursor(unsigned int depth, unsigned int parent_callers) {
397 return Recursor(depth - 1, callers);
415 return Recursor(RECURSION_DEPTH, CountCallerFrames()) ? 0 : 1;