Home
last modified time | relevance | path

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

/openbsd/gnu/usr.bin/gcc/gcc/java/
H A Dparse.h743 int osb_limit; /* Limit of this depth */ member
H A Dparse.c5386 if (!ctxp->osb_limit) in yyparse()
5388 allocate = ctxp->osb_limit = 32; in yyparse()
5392 else if (ctxp->osb_depth+1 == ctxp->osb_limit) in yyparse()
5393 allocate = ctxp->osb_limit << 1; in yyparse()
H A Dparse.y2190 if (!ctxp->osb_limit)
2192 allocate = ctxp->osb_limit = 32;
2196 else if (ctxp->osb_depth+1 == ctxp->osb_limit)
2197 allocate = ctxp->osb_limit << 1;
H A DChangeLog9906 (struct parser_ctxt): New fields osb_depth, osb_limit.