Lines Matching defs:p_base
331 YYLTYPE *p_base;
480 newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
484 data->p_base = newps;
504 free(data->p_base);
525 p->yystack.p_base = NULL;
535 p->yystack.p_base = (YYLTYPE *) malloc(size * sizeof(YYLTYPE));
536 if (p->yystack.p_base == NULL) return NULL;
537 memset(p->yystack.p_base, 0, size * sizeof(YYLTYPE));
607 yystack.p_mark = yystack.p_base;
733 save->yystack.p_mark = save->yystack.p_base + (yystack.p_mark - yystack.p_base);
734 memcpy (save->yystack.p_base, yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
896 yyerrctx->yystack.p_mark = yyerrctx->yystack.p_base + (yystack.p_mark - yystack.p_base);
897 memcpy (yyerrctx->yystack.p_base, yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
912 yystack.p_mark = yystack.p_base + (save->yystack.p_mark - save->yystack.p_base);
913 memcpy (yystack.p_base, save->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
947 yystack.p_mark = yystack.p_base + (yyerrctx->yystack.p_mark - yyerrctx->yystack.p_base);
948 memcpy (yystack.p_base, yyerrctx->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1334 yystack.p_mark = yystack.p_base + (yypath->yystack.p_mark - yypath->yystack.p_base);
1335 memcpy (yystack.p_base, yypath->yystack.p_base, (size_t) (yystack.p_mark - yystack.p_base + 1) * sizeof(YYLTYPE));
1376 for (pv = yystack.l_base, pp = yystack.p_base; pv <= yystack.l_mark; ++pv, ++pp)