Lines Matching refs:Cell
50 Cell **fldtab; /* pointers to Cells */
65 static Cell dollar0 = { OCELL, CFLD, NULL, dollar0_sval, 0.0, REC|STR|DONTFREE, NULL };
66 static Cell dollar1 = { OCELL, CFLD, NULL, dollar1_sval, 0.0, FLD|STR|DONTFREE, NULL };
72 || (fldtab = (Cell **) calloc(nfields+1, sizeof(Cell *))) == NULL in recinit()
73 || (fldtab[0] = (Cell *) malloc(sizeof(Cell))) == NULL ) in recinit()
87 fldtab[i] = (Cell *) malloc(sizeof (struct Cell)); in makefields()
241 Cell *x; in getargv()
257 Cell *q; in setclvar()
279 Cell *p; in fldbld()
379 Cell *p; in cleanfld()
400 Cell *fieldadr(int n) /* get nth field */ in fieldadr()
416 s = (nf+1) * (sizeof (struct Cell *)); /* freebsd: how much do we need? */ in growfldtab()
417 if (s / sizeof(struct Cell *) - 1 == (size_t)nf) /* didn't overflow */ in growfldtab()
418 fldtab = (Cell **) realloc(fldtab, s); in growfldtab()