Home
last modified time | relevance | path

Searched refs:fldtab (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/host-tools/nawk-20071023/
Dlib.c42 Cell **fldtab; /* pointers to Cells */ variable
62 || (fldtab = (Cell **) malloc((nfields+1) * sizeof(Cell *))) == NULL in recinit()
63 || (fldtab[0] = (Cell *) malloc(sizeof(Cell))) == NULL ) in recinit()
65 *fldtab[0] = dollar0; in recinit()
66 fldtab[0]->sval = record; in recinit()
67 fldtab[0]->nval = tostring("0"); in recinit()
77 fldtab[i] = (Cell *) malloc(sizeof (struct Cell)); in makefields()
78 if (fldtab[i] == NULL) in makefields()
80 *fldtab[i] = dollar1; in makefields()
82 fldtab[i]->nval = tostring(temp); in makefields()
[all …]
Drun.c394 extern Cell **fldtab; in getline()
423 setsval(fldtab[0], buf); in getline()
424 if (is_number(fldtab[0]->sval)) { in getline()
425 fldtab[0]->fval = atof(fldtab[0]->sval); in getline()
426 fldtab[0]->tval |= NUM; in getline()
Dtran.c68 extern Cell **fldtab;