Lines Matching defs:ntoksz
114 int ntoksz = NTERMS;
191 tokset = (TOKSYMB *)malloc(sizeof (TOKSYMB) * ntoksz);
192 toklev = (int *)malloc(sizeof (int) * ntoksz);
200 aryfil(toklev, ntoksz, 0);
202 for (ii = 0; ii < ntoksz; ++ii)
907 if (++ntokens >= ntoksz)
1957 * tokset, toklev : increased to ntoksz
1960 * (ntoksz + NNONTERM) >= TEMPSIZE : temp1[]
1965 ntoksz += NTERMS;
1967 tokset = (TOKSYMB *) realloc((char *)tokset, sizeof (TOKSYMB) * ntoksz);
1968 toklev = (int *) realloc((char *)toklev, sizeof (int) * ntoksz);