Home
last modified time | relevance | path

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

/dports/cad/gplcver/gplcver-2.12a.src/src/
H A Dcver.c1801 __nbstk = (struct st_t **) __my_malloc(MAXPRPSTNEST*sizeof(struct st_t *)); in init_ds()
1802 for (i = 0; i < MAXPRPSTNEST; i++) __nbstk[i] = NULL; in init_ds()
1918 __prpstk = (struct st_t **) __my_malloc(MAXPRPSTNEST*sizeof(struct st_t *)); in init_ds()
1919 for (i = 0; i < MAXPRPSTNEST; i++) __prpstk[i] = NULL; in init_ds()
H A Dv_prp2.c3533 if (++__prpsti >= MAXPRPSTNEST) in push_prpstmt()
3534 __sgfterr(317, "statements nested too deeply (%d)", MAXPRPSTNEST); in push_prpstmt()
3585 if (++__nbsti >= MAXPRPSTNEST) in __push_nbstk()
3586 __sgfterr(318, "named blocks nested too deeply (%d)", MAXPRPSTNEST); in __push_nbstk()
H A Dv.h73 #define MAXPRPSTNEST 800 /* maximum statement nesting */ macro