Lines Matching refs:Cell
75 Cell **fldtab; /* pointers to Cells */
87 static Cell dollar0 = { OCELL, CFLD, NULL, "", 0.0, REC|STR|DONTFREE };
88 static Cell dollar1 = { OCELL, CFLD, NULL, "", 0.0, FLD|STR|DONTFREE };
102 (fldtab = (Cell **)malloc((nfields+1) * sizeof (Cell *))) == NULL || in recinit()
103 (fldtab[0] = (Cell *)malloc(sizeof (Cell))) == NULL) in recinit()
118 fldtab[i] = (Cell *)malloc(sizeof (Cell)); in makefields()
349 Cell *x; in getargv()
366 Cell *q; in setclvar()
389 Cell *p; in fldbld()
500 Cell *p; in cleanfld()
538 Cell *
556 s = (nf+1) * (sizeof (Cell *)); /* freebsd: how much do we need? */ in growfldtab()
557 if (s / sizeof (Cell *) - 1 == nf) /* didn't overflow */ in growfldtab()
558 fldtab = (Cell **)realloc(fldtab, s); in growfldtab()