Lines Matching full:cell
95 /* Cell: all information about a variable or constant */
97 typedef struct Cell {
105 struct Cell *cnext; /* ptr to next if chained */
106 } Cell;
111 Cell **tab; /* hash table pointers */
117 extern Cell *nrloc; /* NR */
118 extern Cell *fnrloc; /* FNR */
119 extern Cell *fsloc; /* FS */
120 extern Cell *nfloc; /* NF */
121 extern Cell *ofsloc; /* OFS */
122 extern Cell *orsloc; /* ORS */
123 extern Cell *rsloc; /* RS */
124 extern Cell *rstartloc; /* RSTART */
125 extern Cell *rlengthloc; /* RLENGTH */
126 extern Cell *subseploc; /* SUBSEP */
127 extern Cell *symtabloc; /* SYMTAB */
129 /* Cell.tval values: */
167 /* Node: parse tree is made of nodes, with Cell's at bottom */
187 /* Cell subtypes: csub */