Lines Matching refs:p_base
409 YYLTYPE *p_base; member
521 newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps)); in yygrowstack()
525 data->p_base = newps; in yygrowstack()
545 free(data->p_base); in yyfreestack()
566 p->yystack.p_base = NULL; in yyNewState()
576 p->yystack.p_base = (YYLTYPE *) malloc(size * sizeof(YYLTYPE)); in yyNewState()
577 if (p->yystack.p_base == NULL) return NULL; in yyNewState()
578 memset(p->yystack.p_base, 0, size * sizeof(YYLTYPE)); in yyNewState()
709 yystack.p_mark = yystack.p_base; in YYPARSE_DECL()
835 save->yystack.p_mark = save->yystack.p_base + (yystack.p_mark - yystack.p_base); in YYPARSE_DECL()
836 …memcpy (save->yystack.p_base, yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * siz… in YYPARSE_DECL()
998 yyerrctx->yystack.p_mark = yyerrctx->yystack.p_base + (yystack.p_mark - yystack.p_base); in YYPARSE_DECL()
999 …memcpy (yyerrctx->yystack.p_base, yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) *… in YYPARSE_DECL()
1014 yystack.p_mark = yystack.p_base + (save->yystack.p_mark - save->yystack.p_base); in YYPARSE_DECL()
1015 …memcpy (yystack.p_base, save->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * siz… in YYPARSE_DECL()
1049 yystack.p_mark = yystack.p_base + (yyerrctx->yystack.p_mark - yyerrctx->yystack.p_base); in YYPARSE_DECL()
1050 …memcpy (yystack.p_base, yyerrctx->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) *… in YYPARSE_DECL()
1436 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base); in YYPARSE_DECL()
1437 …memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * s… in YYPARSE_DECL()
1478 for (pv = yystack.l_base, pp = yystack.p_base; pv <= yystack.l_mark; ++pv, ++pp) in YYPARSE_DECL()