Lines Matching refs:Value_t
21 static Value_t **froms;
22 static Value_t **tos;
24 static Value_t *conflicts = NULL;
25 static Value_t nconflicts = 0;
27 static Value_t *tally;
28 static Value_t *width;
29 static Value_t *state_count;
30 static Value_t *order;
31 static Value_t *base;
32 static Value_t *pos;
34 static Value_t *table;
35 static Value_t *check;
459 static Value_t
474 return (Value_t)i;
482 Value_t shiftcount, reducecount;
484 Value_t conflictcount = 0;
485 Value_t csym = -1;
486 Value_t cbase = 0;
488 Value_t max, min;
489 Value_t *actionrow, *r, *s;
492 actionrow = NEW2(PER_STATE * ntokens, Value_t);
520 actionrow[csym + 2 * ntokens] = (Value_t)(j + 1);
565 conflicts[nconflicts++] = (Value_t)(p->number - 2);
576 actionrow[csym + 2 * ntokens] = (Value_t)(j + 1);
604 froms[i] = r = NEW2(shiftcount, Value_t);
605 tos[i] = s = NEW2(shiftcount, Value_t);
620 width[i] = (Value_t)(max - min + 1);
624 froms[nstates + i] = r = NEW2(reducecount, Value_t);
625 tos[nstates + i] = s = NEW2(reducecount, Value_t);
637 *s++ = (Value_t)(actionrow[ntokens + j] - 2);
640 width[nstates + i] = (Value_t)(max - min + 1);
645 froms[2 * nstates + i] = r = NEW2(conflictcount, Value_t);
646 tos[2 * nstates + i] = s = NEW2(conflictcount, Value_t);
658 *s++ = (Value_t)(actionrow[2 * ntokens + j] - 1);
661 width[2 * nstates + i] = (Value_t)(max - min + 1);
710 Value_t *sp;
711 Value_t *sp1;
712 Value_t *sp2;
713 Value_t count;
730 froms[symno] = sp1 = sp = NEW2(count, Value_t);
731 tos[symno] = sp2 = NEW2(count, Value_t);
743 width[symno] = (Value_t)(sp1[-1] - sp[0] + 1);
751 state_count = NEW2(nstates, Value_t);
780 Value_t i;
786 order = NEW2(nvectors, Value_t);
880 Value_t loc;
882 const Value_t *from;
883 const Value_t *to;
904 loc = (Value_t)(j + from[k]);
917 table = TREALLOC(Value_t, table, newmax);
920 check = TREALLOC(Value_t, check, newmax);
943 loc = (Value_t)(j + from[k]);
962 Value_t place;
964 base = NEW2(nvectors, Value_t);
965 pos = NEW2(nentries, Value_t);
968 table = NEW2(maxtable, Value_t);
969 check = NEW2(maxtable, Value_t);
982 place = (Value_t)pack_vector(i);
1190 froms = NEW2(nvectors, Value_t *);
1191 tos = NEW2(nvectors, Value_t *);
1192 tally = NEW2(nvectors, Value_t);
1193 width = NEW2(nvectors, Value_t);
1197 conflicts = NEW2(4 * (SRtotal + RRtotal), Value_t);