Symbol: Cell
sys/dev/pci/drm/amd/pm/powerplay/inc/smu73.h
699
VFT_CELL_t Cell[TEMP_RANGE_MAXSTEPS][NUM_VFT_COLUMNS];
sys/dev/pci/drm/amd/pm/powerplay/inc/smu74.h
782
VFT_CELL_t Cell[TEMP_RANGE_MAXSTEPS][NUM_VFT_COLUMNS];
sys/dev/pci/drm/amd/pm/powerplay/inc/smu74.h
796
VFT_CELL_t Cell[NUM_VFT_COLUMNS];
sys/dev/pci/drm/amd/pm/powerplay/inc/smu74.h
812
VFT_CELL_t Cell[NUM_VFT_COLUMNS];
sys/dev/pci/drm/amd/pm/powerplay/inc/smu75.h
679
VFT_CELL_t Cell[TEMP_RANGE_MAXSTEPS][NUM_VFT_COLUMNS];
sys/dev/pci/drm/amd/pm/powerplay/inc/smu75.h
715
VFT_CELL_t Cell[NUM_VFT_COLUMNS];
sys/dev/pci/drm/amd/pm/powerplay/inc/smu75.h
720
VFT_CELL_t Cell[NUM_VFT_COLUMNS];
sys/dev/pci/drm/amd/pm/powerplay/inc/smu75.h
725
VFT_CELL_t Cell[NUM_VFT_COLUMNS];
sys/dev/pci/drm/amd/pm/powerplay/inc/smu75.h
730
VFT_CELL_t Cell[NUM_VFT_COLUMNS];
usr.bin/awk/awk.h
107
struct Cell *cnext; /* ptr to next if chained */
usr.bin/awk/awk.h
113
Cell **tab; /* hash table pointers */
usr.bin/awk/awk.h
119
extern Cell *nrloc; /* NR */
usr.bin/awk/awk.h
120
extern Cell *fnrloc; /* FNR */
usr.bin/awk/awk.h
121
extern Cell *fsloc; /* FS */
usr.bin/awk/awk.h
122
extern Cell *nfloc; /* NF */
usr.bin/awk/awk.h
123
extern Cell *ofsloc; /* OFS */
usr.bin/awk/awk.h
124
extern Cell *orsloc; /* ORS */
usr.bin/awk/awk.h
125
extern Cell *rsloc; /* RS */
usr.bin/awk/awk.h
126
extern Cell *rstartloc; /* RSTART */
usr.bin/awk/awk.h
127
extern Cell *rlengthloc; /* RLENGTH */
usr.bin/awk/awk.h
128
extern Cell *subseploc; /* SUBSEP */
usr.bin/awk/awk.h
129
extern Cell *symtabloc; /* SYMTAB */
usr.bin/awk/awkgram.y
187
{ infunc = false; curfname=0; defn((Cell *)$2, $4, $8); $$ = 0; }
usr.bin/awk/awkgram.y
31
void checkdup(Node *list, Cell *item);
usr.bin/awk/awkgram.y
44
Cell *cp;
usr.bin/awk/awkgram.y
477
void setfname(Cell *p)
usr.bin/awk/awkgram.y
488
return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
usr.bin/awk/awkgram.y
493
return ((Cell *)(p->narg[0]))->sval;
usr.bin/awk/awkgram.y
507
void checkdup(Node *vl, Cell *cp) /* check if name already in list */
usr.bin/awk/awkgram.y
511
if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
usr.bin/awk/lib.c
334
Cell *x;
usr.bin/awk/lib.c
336
extern Cell *ARGVcell;
usr.bin/awk/lib.c
351
Cell *q;
usr.bin/awk/lib.c
380
Cell *p;
usr.bin/awk/lib.c
47
Cell **fldtab; /* pointers to Cells */
usr.bin/awk/lib.c
520
Cell *p;
usr.bin/awk/lib.c
556
Cell *fieldadr(int n) /* get nth field */
usr.bin/awk/lib.c
572
s = (nf+1) * (sizeof (struct Cell *)); /* freebsd: how much do we need? */
usr.bin/awk/lib.c
573
if (s / sizeof(struct Cell *) - 1 == (size_t)nf) /* didn't overflow */
usr.bin/awk/lib.c
574
fldtab = (Cell **) realloc(fldtab, s);
usr.bin/awk/lib.c
61
static Cell dollar0 = { OCELL, CFLD, NULL, EMPTY, 0.0, REC|STR|DONTFREE, NULL, NULL };
usr.bin/awk/lib.c
62
static Cell dollar1 = { OCELL, CFLD, NULL, EMPTY, 0.0, FLD|STR|DONTFREE, NULL, NULL };
usr.bin/awk/lib.c
68
|| (fldtab = (Cell **) calloc(nfields+2, sizeof(*fldtab))) == NULL
usr.bin/awk/lib.c
69
|| (fldtab[0] = (Cell *) malloc(sizeof(**fldtab))) == NULL)
usr.bin/awk/lib.c
84
fldtab[i] = (Cell *) malloc(sizeof(**fldtab));
usr.bin/awk/parse.c
192
Node *celltonode(Cell *a, int b)
usr.bin/awk/parse.c
205
extern Cell *literal0;
usr.bin/awk/parse.c
211
Cell *cp;
usr.bin/awk/parse.c
214
cp = (Cell *) (p->narg[0]);
usr.bin/awk/parse.c
257
void defn(Cell *v, Node *vl, Node *st) /* turn on FCN bit in definition, */
usr.bin/awk/parse.c
287
if (strcmp(((Cell *)(p->narg[0]))->nval, s) == 0)
usr.bin/awk/proto.h
100
extern void freesymtab(Cell *);
usr.bin/awk/proto.h
101
extern void freeelem(Cell *, const char *);
usr.bin/awk/proto.h
102
extern Cell *setsymtab(const char *, const char *, double, unsigned int, Array *);
usr.bin/awk/proto.h
105
extern Cell *lookup(const char *, Array *);
usr.bin/awk/proto.h
106
extern double setfval(Cell *, double);
usr.bin/awk/proto.h
107
extern void funnyvar(Cell *, const char *);
usr.bin/awk/proto.h
108
extern char *setsval(Cell *, const char *);
usr.bin/awk/proto.h
109
extern double getfval(Cell *);
usr.bin/awk/proto.h
110
extern char *getsval(Cell *);
usr.bin/awk/proto.h
111
extern char *getpssval(Cell *); /* for print */
usr.bin/awk/proto.h
115
extern Cell *catstr(Cell *, Cell *);
usr.bin/awk/proto.h
133
extern Cell *fieldadr(int);
usr.bin/awk/proto.h
154
extern Cell *execute(Node *);
usr.bin/awk/proto.h
155
extern Cell *program(Node **, int);
usr.bin/awk/proto.h
156
extern Cell *call(Node **, int);
usr.bin/awk/proto.h
157
extern Cell *copycell(Cell *);
usr.bin/awk/proto.h
158
extern Cell *arg(Node **, int);
usr.bin/awk/proto.h
159
extern Cell *jump(Node **, int);
usr.bin/awk/proto.h
160
extern Cell *awkgetline(Node **, int);
usr.bin/awk/proto.h
161
extern Cell *getnf(Node **, int);
usr.bin/awk/proto.h
162
extern Cell *array(Node **, int);
usr.bin/awk/proto.h
163
extern Cell *awkdelete(Node **, int);
usr.bin/awk/proto.h
164
extern Cell *intest(Node **, int);
usr.bin/awk/proto.h
165
extern Cell *matchop(Node **, int);
usr.bin/awk/proto.h
166
extern Cell *boolop(Node **, int);
usr.bin/awk/proto.h
167
extern Cell *relop(Node **, int);
usr.bin/awk/proto.h
168
extern void tfree(Cell *);
usr.bin/awk/proto.h
169
extern Cell *gettemp(void);
usr.bin/awk/proto.h
170
extern Cell *indirect(Node **, int);
usr.bin/awk/proto.h
171
extern Cell *substr(Node **, int);
usr.bin/awk/proto.h
172
extern Cell *sindex(Node **, int);
usr.bin/awk/proto.h
174
extern Cell *awksprintf(Node **, int);
usr.bin/awk/proto.h
175
extern Cell *awkprintf(Node **, int);
usr.bin/awk/proto.h
176
extern Cell *arith(Node **, int);
usr.bin/awk/proto.h
178
extern Cell *incrdecr(Node **, int);
usr.bin/awk/proto.h
179
extern Cell *assign(Node **, int);
usr.bin/awk/proto.h
180
extern Cell *cat(Node **, int);
usr.bin/awk/proto.h
181
extern Cell *pastat(Node **, int);
usr.bin/awk/proto.h
182
extern Cell *dopa2(Node **, int);
usr.bin/awk/proto.h
183
extern Cell *split(Node **, int);
usr.bin/awk/proto.h
184
extern Cell *condexpr(Node **, int);
usr.bin/awk/proto.h
185
extern Cell *ifstat(Node **, int);
usr.bin/awk/proto.h
186
extern Cell *whilestat(Node **, int);
usr.bin/awk/proto.h
187
extern Cell *dostat(Node **, int);
usr.bin/awk/proto.h
188
extern Cell *forstat(Node **, int);
usr.bin/awk/proto.h
189
extern Cell *instat(Node **, int);
usr.bin/awk/proto.h
190
extern Cell *bltin(Node **, int);
usr.bin/awk/proto.h
191
extern Cell *printstat(Node **, int);
usr.bin/awk/proto.h
192
extern Cell *nullproc(Node **, int);
usr.bin/awk/proto.h
196
extern Cell *closefile(Node **, int);
usr.bin/awk/proto.h
198
extern Cell *dosub(Node **, int);
usr.bin/awk/proto.h
199
extern Cell *gensub(Node **, int);
usr.bin/awk/proto.h
27
extern void setfname(Cell *);
usr.bin/awk/proto.h
84
extern Node *celltonode(Cell *, int);
usr.bin/awk/proto.h
89
extern void defn(Cell *, Node *, Node *);
usr.bin/awk/proto.h
92
extern Cell *(*proctab[])(Node **, int);
usr.bin/awk/run.c
100
static Cell tempcell ={ OCELL, CTEMP, 0, EMPTY, 0.0, NUM|STR|DONTFREE, NULL, NULL };
usr.bin/awk/run.c
1026
Cell *sindex(Node **a, int nnn) /* index(a[0], a[1]) */
usr.bin/awk/run.c
1028
Cell *x, *y, *z;
usr.bin/awk/run.c
1079
Cell *x;
usr.bin/awk/run.c
1387
Cell *awksprintf(Node **a, int n) /* sprintf(a[0]) */
usr.bin/awk/run.c
1389
Cell *x;
usr.bin/awk/run.c
1407
Cell *awkprintf(Node **a, int n) /* printf */
usr.bin/awk/run.c
1411
Cell *x;
usr.bin/awk/run.c
1441
Cell *arith(Node **a, int n) /* a[0] + a[1], etc. also -a[0] */
usr.bin/awk/run.c
1445
Cell *x, *y, *z;
usr.bin/awk/run.c
147
Cell *execute(Node *u) /* execute a node of the parse tree */
usr.bin/awk/run.c
149
Cell *(*proc)(Node **, int);
usr.bin/awk/run.c
150
Cell *x;
usr.bin/awk/run.c
1510
Cell *incrdecr(Node **a, int n) /* a[0]++, etc. */
usr.bin/awk/run.c
1512
Cell *x, *z;
usr.bin/awk/run.c
1530
Cell *assign(Node **a, int n) /* a[0] = a[1], a[0] += a[1], etc. */
usr.bin/awk/run.c
1532
Cell *x, *y;
usr.bin/awk/run.c
158
x = (Cell *) (a->narg[0]);
usr.bin/awk/run.c
1596
Cell *cat(Node **a, int q) /* a[0] cat a[1] */
usr.bin/awk/run.c
1598
Cell *x, *y, *z;
usr.bin/awk/run.c
1625
Cell *pastat(Node **a, int n) /* a[0] { a[1] } */
usr.bin/awk/run.c
1627
Cell *x;
usr.bin/awk/run.c
1641
Cell *dopa2(Node **a, int n) /* a[0], a[1] { a[2] } */
usr.bin/awk/run.c
1643
Cell *x;
usr.bin/awk/run.c
1664
Cell *split(Node **a, int nnn) /* split(a[0], a[1], a[2]); a[3] is type */
usr.bin/awk/run.c
1666
Cell *x = NULL, *y, *ap;
usr.bin/awk/run.c
184
Cell *program(Node **a, int n) /* execute an awk program */
usr.bin/awk/run.c
1852
Cell *condexpr(Node **a, int n) /* a[0] ? a[1] : a[2] */
usr.bin/awk/run.c
1854
Cell *x;
usr.bin/awk/run.c
186
Cell *x;
usr.bin/awk/run.c
1867
Cell *ifstat(Node **a, int n) /* if (a[0]) a[1]; else a[2] */
usr.bin/awk/run.c
1869
Cell *x;
usr.bin/awk/run.c
1882
Cell *whilestat(Node **a, int n) /* while (a[0]) a[1] */
usr.bin/awk/run.c
1884
Cell *x;
usr.bin/awk/run.c
1902
Cell *dostat(Node **a, int n) /* do a[0]; while(a[1]) */
usr.bin/awk/run.c
1904
Cell *x;
usr.bin/awk/run.c
1920
Cell *forstat(Node **a, int n) /* for (a[0]; a[1]; a[2]) a[3] */
usr.bin/awk/run.c
1922
Cell *x;
usr.bin/awk/run.c
1943
Cell *instat(Node **a, int n) /* for (a[0] in a[1]) a[2] */
usr.bin/awk/run.c
1945
Cell *x, *vp, *arrayp, *cp, *ncp;
usr.bin/awk/run.c
2051
Cell *bltin(Node **a, int n) /* builtin functions. a[0] is type, a[1] is arg list */
usr.bin/awk/run.c
2053
Cell *x, *y;
usr.bin/awk/run.c
220
Cell *fcncell; /* pointer to Cell for function */
usr.bin/awk/run.c
221
Cell **args; /* pointer to array of arguments after execute */
usr.bin/awk/run.c
222
Cell *retval; /* return value */
usr.bin/awk/run.c
2292
Cell *printstat(Node **a, int n) /* print a[0] */
usr.bin/awk/run.c
2295
Cell *y;
usr.bin/awk/run.c
231
Cell *call(Node **a, int n) /* function call. very kludgy and fragile */
usr.bin/awk/run.c
2318
Cell *nullproc(Node **a, int n)
usr.bin/awk/run.c
2327
Cell *x;
usr.bin/awk/run.c
233
static const Cell newcopycell = { OCELL, CCOPY, 0, EMPTY, 0.0, NUM|STR|DONTFREE, NULL, NULL };
usr.bin/awk/run.c
237
Cell *args[NARGS], *oargs[NARGS]; /* BUG: fixed size arrays */
usr.bin/awk/run.c
238
Cell *y, *z, *fcn;
usr.bin/awk/run.c
2442
Cell *closefile(Node **a, int n)
usr.bin/awk/run.c
2444
Cell *x;
usr.bin/awk/run.c
2523
Cell *dosub(Node **a, int subop) /* sub and gsub */
usr.bin/awk/run.c
2528
Cell *x;
usr.bin/awk/run.c
2662
Cell *gensub(Node **a, int nnn) /* global selective substitute */
usr.bin/awk/run.c
2665
Cell *x, *y, *res, *h;
usr.bin/awk/run.c
295
Cell *t = frp->args[i];
usr.bin/awk/run.c
330
Cell *copycell(Cell *x) /* make a copy of a cell in a temp */
usr.bin/awk/run.c
332
Cell *y;
usr.bin/awk/run.c
349
Cell *arg(Node **a, int n) /* nth argument of a function */
usr.bin/awk/run.c
360
Cell *jump(Node **a, int n) /* break, continue, next, nextfile, return */
usr.bin/awk/run.c
362
Cell *y;
usr.bin/awk/run.c
404
Cell *awkgetline(Node **a, int n) /* get next line from specific input */
usr.bin/awk/run.c
406
Cell *r, *x;
usr.bin/awk/run.c
407
extern Cell **fldtab;
usr.bin/awk/run.c
469
Cell *getnf(Node **a, int n) /* get NF */
usr.bin/awk/run.c
473
return (Cell *) a[0];
usr.bin/awk/run.c
491
Cell *x = execute(p); /* expr */
usr.bin/awk/run.c
513
Cell *array(Node **a, int n) /* a[0] is symtab, a[1] is list of subscripts */
usr.bin/awk/run.c
515
Cell *x, *z;
usr.bin/awk/run.c
52
void tempfree(Cell *p) {
usr.bin/awk/run.c
536
Cell *awkdelete(Node **a, int n) /* a[0] is symtab, a[1] is list of subscripts */
usr.bin/awk/run.c
538
Cell *x;
usr.bin/awk/run.c
560
Cell *intest(Node **a, int n) /* a[0] is index (list), a[1] is symtab */
usr.bin/awk/run.c
562
Cell *ap, *k;
usr.bin/awk/run.c
796
Cell *matchop(Node **a, int n) /* ~ and match() */
usr.bin/awk/run.c
798
Cell *x, *y, *z;
usr.bin/awk/run.c
82
Cell *tmps; /* free temporary cells for execution */
usr.bin/awk/run.c
84
static Cell truecell ={ OBOOL, BTRUE, 0, 0, 1.0, NUM, NULL, NULL };
usr.bin/awk/run.c
85
Cell *True = &truecell;
usr.bin/awk/run.c
852
Cell *boolop(Node **a, int n) /* a[0] || a[1], a[0] && a[1], !a[0] */
usr.bin/awk/run.c
854
Cell *x, *y;
usr.bin/awk/run.c
86
static Cell falsecell ={ OBOOL, BFALSE, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
87
Cell *False = &falsecell;
usr.bin/awk/run.c
88
static Cell breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
884
Cell *relop(Node **a, int n) /* a[0 < a[1], etc. */
usr.bin/awk/run.c
887
Cell *x, *y;
usr.bin/awk/run.c
89
Cell *jbreak = &breakcell;
usr.bin/awk/run.c
90
static Cell contcell ={ OJUMP, JCONT, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
91
Cell *jcont = &contcell;
usr.bin/awk/run.c
92
static Cell nextcell ={ OJUMP, JNEXT, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
925
void tfree(Cell *a) /* free a tempcell */
usr.bin/awk/run.c
93
Cell *jnext = &nextcell;
usr.bin/awk/run.c
937
Cell *gettemp(void) /* get a tempcell */
usr.bin/awk/run.c
939
Cell *x;
usr.bin/awk/run.c
94
static Cell nextfilecell ={ OJUMP, JNEXTFILE, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
942
tmps = (Cell *) calloc(100, sizeof(*tmps));
usr.bin/awk/run.c
95
Cell *jnextfile = &nextfilecell;
usr.bin/awk/run.c
955
Cell *indirect(Node **a, int n) /* $( a[0] ) */
usr.bin/awk/run.c
958
Cell *x;
usr.bin/awk/run.c
96
static Cell exitcell ={ OJUMP, JEXIT, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
97
Cell *jexit = &exitcell;
usr.bin/awk/run.c
973
Cell *substr(Node **a, int nnn) /* substr(a[0], a[1], a[2]) */
usr.bin/awk/run.c
979
Cell *x, *y, *z = NULL;
usr.bin/awk/run.c
98
static Cell retcell ={ OJUMP, JRET, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
99
Cell *jret = &retcell;
usr.bin/awk/tran.c
111
Cell *cp;
usr.bin/awk/tran.c
136
Cell *cp;
usr.bin/awk/tran.c
162
Cell **tp;
usr.bin/awk/tran.c
165
tp = (Cell **) calloc(n, sizeof(*tp));
usr.bin/awk/tran.c
174
void freesymtab(Cell *ap) /* free a symbol table */
usr.bin/awk/tran.c
176
Cell *cp, *temp;
usr.bin/awk/tran.c
202
void freeelem(Cell *ap, const char *s) /* free elem s from ap (i.e., ap["s"] */
usr.bin/awk/tran.c
205
Cell *p, *prev = NULL;
usr.bin/awk/tran.c
225
Cell *setsymtab(const char *n, const char *s, Awkfloat f, unsigned t, Array *tp)
usr.bin/awk/tran.c
228
Cell *p;
usr.bin/awk/tran.c
235
p = (Cell *) malloc(sizeof(*p));
usr.bin/awk/tran.c
267
Cell *cp, *op, **np;
usr.bin/awk/tran.c
270
np = (Cell **) calloc(nsz, sizeof(*np));
usr.bin/awk/tran.c
286
Cell *lookup(const char *s, Array *tp) /* look for s in tp */
usr.bin/awk/tran.c
288
Cell *p;
usr.bin/awk/tran.c
298
Awkfloat setfval(Cell *vp, Awkfloat f) /* set float val of a Cell */
usr.bin/awk/tran.c
334
void funnyvar(Cell *vp, const char *rw)
usr.bin/awk/tran.c
344
char *setsval(Cell *vp, const char *s) /* set string val of a Cell */
usr.bin/awk/tran.c
391
Awkfloat getfval(Cell *vp) /* get float val of a Cell */
usr.bin/awk/tran.c
425
static char *get_str_val(Cell *vp, char **fmt) /* get string val of a Cell */
usr.bin/awk/tran.c
517
char *getsval(Cell *vp) /* get string val of a Cell */
usr.bin/awk/tran.c
522
char *getpssval(Cell *vp) /* get string val of a Cell for print */
usr.bin/awk/tran.c
54
Cell *fsloc; /* FS */
usr.bin/awk/tran.c
548
Cell *catstr(Cell *a, Cell *b) /* concatenate a and b */
usr.bin/awk/tran.c
55
Cell *nrloc; /* NR */
usr.bin/awk/tran.c
550
Cell *c;
usr.bin/awk/tran.c
56
Cell *nfloc; /* NF */
usr.bin/awk/tran.c
57
Cell *fnrloc; /* FNR */
usr.bin/awk/tran.c
58
Cell *ofsloc; /* OFS */
usr.bin/awk/tran.c
59
Cell *orsloc; /* ORS */
usr.bin/awk/tran.c
60
Cell *rsloc; /* RS */
usr.bin/awk/tran.c
61
Cell *ARGVcell; /* cell with symbol table containing ARGV[...] */
usr.bin/awk/tran.c
62
Cell *rstartloc; /* RSTART */
usr.bin/awk/tran.c
63
Cell *rlengthloc; /* RLENGTH */
usr.bin/awk/tran.c
64
Cell *subseploc; /* SUBSEP */
usr.bin/awk/tran.c
65
Cell *symtabloc; /* SYMTAB */
usr.bin/awk/tran.c
67
Cell *nullloc; /* a guaranteed empty cell */
usr.bin/awk/tran.c
69
Cell *literal0;
usr.bin/awk/tran.c
71
extern Cell **fldtab;