Home | History | Annotate | Download | only in btyacc

Lines Matching defs:p_base

479     YYLTYPE  *p_base;
717 newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
721 data->p_base = newps;
741 free(data->p_base);
762 p->yystack.p_base = NULL;
772 p->yystack.p_base = (YYLTYPE *) malloc(size * sizeof(YYLTYPE));
773 if (p->yystack.p_base == NULL) return NULL;
774 memset(p->yystack.p_base, 0, size * sizeof(YYLTYPE));
844 yystack.p_mark = yystack.p_base;
970 save->yystack.p_mark = save->yystack.p_base + (yystack.p_mark - yystack.p_base);
971 memcpy (save->yystack.p_base, yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1133 yyerrctx->yystack.p_mark = yyerrctx->yystack.p_base + (yystack.p_mark - yystack.p_base);
1134 memcpy (yyerrctx->yystack.p_base, yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1149 yystack.p_mark = yystack.p_base + (save->yystack.p_mark - save->yystack.p_base);
1150 memcpy (yystack.p_base, save->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1184 yystack.p_mark = yystack.p_base + (yyerrctx->yystack.p_mark - yyerrctx->yystack.p_base);
1185 memcpy (yystack.p_base, yyerrctx->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1684 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
1685 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1726 for (pv = yystack.l_base, pp = yystack.p_base; pv <= yystack.l_mark; ++pv, ++pp)