Lines Matching defs:p_base

1115     YYLTYPE  *p_base;
1393 newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
1397 data->p_base = newps;
1417 free(data->p_base);
1438 p->yystack.p_base = NULL;
1448 p->yystack.p_base = (YYLTYPE *) malloc(size * sizeof(YYLTYPE));
1449 if (p->yystack.p_base == NULL) return NULL;
1450 memset(p->yystack.p_base, 0, size * sizeof(YYLTYPE));
1515 yystack.p_mark = yystack.p_base;
1642 save->yystack.p_mark = save->yystack.p_base + (yystack.p_mark - yystack.p_base);
1643 memcpy (save->yystack.p_base, yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1796 yyerrctx->yystack.p_mark = yyerrctx->yystack.p_base + (yystack.p_mark - yystack.p_base);
1797 memcpy (yyerrctx->yystack.p_base, yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1812 yystack.p_mark = yystack.p_base + (save->yystack.p_mark - save->yystack.p_base);
1813 memcpy (yystack.p_base, save->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1847 yystack.p_mark = yystack.p_base + (yyerrctx->yystack.p_mark - yyerrctx->yystack.p_base);
1848 memcpy (yystack.p_base, yyerrctx->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
2834 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
2835 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
2876 for (pv = yystack.l_base, pp = yystack.p_base; pv <= yystack.l_mark; ++pv, ++pp)