Lines Matching refs:p_base

286     YYLTYPE  *p_base;  member
415 newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps)); in yygrowstack()
419 data->p_base = newps; in yygrowstack()
439 free(data->p_base); in yyfreestack()
460 p->yystack.p_base = NULL; in yyNewState()
470 p->yystack.p_base = (YYLTYPE *) malloc(size * sizeof(YYLTYPE)); in yyNewState()
471 if (p->yystack.p_base == NULL) return NULL; in yyNewState()
472 memset(p->yystack.p_base, 0, size * sizeof(YYLTYPE)); in yyNewState()
537 yystack.p_mark = yystack.p_base; in YYPARSE_DECL()
664 save->yystack.p_mark = save->yystack.p_base + (yystack.p_mark - yystack.p_base); in YYPARSE_DECL()
665 …memcpy (save->yystack.p_base, yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * siz… in YYPARSE_DECL()
818 yyerrctx->yystack.p_mark = yyerrctx->yystack.p_base + (yystack.p_mark - yystack.p_base); in YYPARSE_DECL()
819 …memcpy (yyerrctx->yystack.p_base, yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) *… in YYPARSE_DECL()
834 yystack.p_mark = yystack.p_base + (save->yystack.p_mark - save->yystack.p_base); in YYPARSE_DECL()
835 …memcpy (yystack.p_base, save->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * siz… in YYPARSE_DECL()
869 yystack.p_mark = yystack.p_base + (yyerrctx->yystack.p_mark - yyerrctx->yystack.p_base); in YYPARSE_DECL()
870 …memcpy (yystack.p_base, yyerrctx->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) *… in YYPARSE_DECL()
1181 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base); in YYPARSE_DECL()
1182 …memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * s… in YYPARSE_DECL()
1223 for (pv = yystack.l_base, pp = yystack.p_base; pv <= yystack.l_mark; ++pv, ++pp) in YYPARSE_DECL()