Home
last modified time | relevance | path

Searched refs:MAX_DEPTH (Results 1 – 3 of 3) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/dist/Storable/t/
Drecurse.t324 sub MAX_DEPTH () { Storable::stack_depth() } subroutine
328 print "# max depth ", MAX_DEPTH, "\n";
329 $t = [$t] for 1 .. MAX_DEPTH;
331 pass "can nest ".MAX_DEPTH." array refs";
349 $t = [$t] for 1 .. MAX_DEPTH*2;
354 'Caught aref stack overflow '.MAX_DEPTH*2;
364 $t = {1=>$t} for 1 .. MAX_DEPTH * 2;
/openbsd/src/gnu/llvm/llvm/tools/llvm-c-test/
Dcalc.c39 #define MAX_DEPTH 32 macro
44 LLVMValueRef stack[MAX_DEPTH]; in build_from_tokens()
92 if (depth >= MAX_DEPTH) { in build_from_tokens()
/openbsd/src/usr.bin/make/
Dvar.c921 #define MAX_DEPTH 350 macro
922 static Var *call_trace[MAX_DEPTH];
932 i < (current_depth > MAX_DEPTH ? MAX_DEPTH : current_depth); in push_used()
941 if (current_depth < MAX_DEPTH) in push_used()