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

Lines Matching refs:Array

37 Array	*symtab;	/* main symbol table */
61 Array *ARGVtab; /* symbol table containing ARGV[...] */
62 Array *ENVtab; /* symbol table containing ENVIRON[...] */
162 Array *makesymtab(int n) /* make a new symbol table */
164 Array *ap;
167 ap = (Array *) malloc(sizeof(Array));
180 Array *tp;
185 tp = (Array *) ap->sval;
207 Array *tp;
211 tp = (Array *) ap->sval;
228 Cell *setsymtab(const char *n, const char *s, Awkfloat f, unsigned t, Array *tp)
267 void rehash(Array *tp) /* rehash items in small table into big one */
289 Cell *lookup(const char *s, Array *tp) /* look for s in tp */
339 FATAL("can't %s %s; it's an array name.", rw, vp->nval);