Home | History | Annotate | Download | only in one-true-awk

Lines Matching defs:cp

102 	Cell *cp;
107 cp = setsymtab("ARGV", "", 0.0, ARR, symtab);
109 cp->sval = (char *) ARGVtab;
122 Cell *cp;
125 cp = setsymtab("ENVIRON", "", 0.0, ARR, symtab);
127 cp->sval = (char *) ENVtab;
159 Cell *cp, *temp;
169 for (cp = tp->tab[i]; cp != NULL; cp = temp) {
170 xfree(cp->nval);
171 if (freeable(cp))
172 xfree(cp->sval);
173 temp = cp->cnext; /* avoids freeing then using */
174 free(cp);
250 Cell *cp, *op, **np;
257 for (cp = tp->tab[i]; cp; cp = op) {
258 op = cp->cnext;
259 nh = hash(cp->nval, nsz);
260 cp->cnext = np[nh];
261 np[nh] = cp;