Lines Matching refs:Cell
42 Cell **fldtab; /* pointers to Cells */
55 static Cell dollar0 = { OCELL, CFLD, NULL, "", 0.0, REC|STR|DONTFREE };
56 static Cell dollar1 = { OCELL, CFLD, NULL, "", 0.0, FLD|STR|DONTFREE };
62 || (fldtab = (Cell **) malloc((nfields+1) * sizeof(Cell *))) == NULL in recinit()
63 || (fldtab[0] = (Cell *) malloc(sizeof(Cell))) == NULL ) in recinit()
77 fldtab[i] = (Cell *) malloc(sizeof (struct Cell)); in makefields()
225 Cell *x; in getargv()
239 Cell *q; in setclvar()
260 Cell *p; in fldbld()
359 Cell *p; in cleanfld()
380 Cell *fieldadr(int n) /* get nth field */ in fieldadr()
396 s = (nf+1) * (sizeof (struct Cell *)); /* freebsd: how much do we need? */ in growfldtab()
397 if (s / sizeof(struct Cell *) - 1 == nf) /* didn't overflow */ in growfldtab()
398 fldtab = (Cell **) realloc(fldtab, s); in growfldtab()