Searched refs:Cell (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10.1/awk-20/src/
H A Dproto.h26 extern void setfname(Cell *);
84 extern Node *celltonode(Cell *, int);
89 extern void defn(Cell *, Node *, Node *);
92 extern Cell *(*proctab[])(Node **, int);
100 extern void freesymtab(Cell *);
101 extern void freeelem(Cell *, const char *);
102 extern Cell *setsymtab(const char *, const char *, double, unsigned int, Array *);
105 extern Cell *lookup(const char *, Array *);
106 extern double setfval(Cell *, double);
107 extern void funnyvar(Cell *, cons
[all...]
H A Dawk.h77 /* Cell: all information about a variable or constant */
79 typedef struct Cell { struct
86 struct Cell *cnext; /* ptr to next if chained */
87 } Cell; typedef in typeref:struct:Cell
92 Cell **tab; /* hash table pointers */
98 extern Cell *nrloc; /* NR */
99 extern Cell *fnrloc; /* FNR */
100 extern Cell *nfloc; /* NF */
101 extern Cell *rstartloc; /* RSTART */
102 extern Cell *rlengthlo
[all...]
H A Dtran.c54 Cell *fsloc; /* FS */
55 Cell *nrloc; /* NR */
56 Cell *nfloc; /* NF */
57 Cell *fnrloc; /* FNR */
60 Cell *rstartloc; /* RSTART */
61 Cell *rlengthloc; /* RLENGTH */
62 Cell *symtabloc; /* SYMTAB */
64 Cell *nullloc; /* a guaranteed empty cell */
66 Cell *literal0;
68 extern Cell **fldta
[all...]
H A Drun.c42 void tempfree(Cell *p) {
44 WARNING("bad csub %d in Cell %d %s",
71 Cell *tmps; /* free temporary cells for execution */
73 static Cell truecell ={ OBOOL, BTRUE, 0, 0, 1.0, NUM };
74 Cell *True = &truecell;
75 static Cell falsecell ={ OBOOL, BFALSE, 0, 0, 0.0, NUM };
76 Cell *False = &falsecell;
77 static Cell breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM };
78 Cell *jbreak = &breakcell;
79 static Cell contcel
[all...]
H A Dlib.c42 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
63 || (fldtab[0] = (Cell *) malloc(sizeof(Cell))) == NULL )
77 fldtab[i] = (Cell *) malloc(sizeof (struct Cell));
227 Cell *
[all...]
H A Dparse.c168 Node *celltonode(Cell *a, int b)
181 extern Cell *literal0;
187 Cell *cp;
190 cp = (Cell *) (p->narg[0]);
233 void defn(Cell *v, Node *vl, Node *st) /* turn on FCN bit in definition, */
263 if (strcmp(((Cell *)(p->narg[0]))->nval, s) == 0)
H A Dproctab.c103 Cell *(*proctab[94])(Node **, int) = {
H A Dawkgram.y30 void checkdup(Node *list, Cell *item);
43 Cell *cp;
185 { infunc--; curfname=0; defn((Cell *)$2, $4, $8); $$ = 0; }
448 void setfname(Cell *p)
459 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
464 return ((Cell *)(p->narg[0]))->sval;
478 void checkdup(Node *vl, Cell *cp) /* check if name already in list */
482 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
H A Dytab.h242 Cell *cp;
H A Dytab.c271 void checkdup(Node *list, Cell *item);
305 Cell *cp;
2856 { infunc--; curfname=0; defn((Cell *)(yyvsp[(2) - (9)].p), (yyvsp[(4) - (9)].p), (yyvsp[(8) - (9)].p)); (yyval.p) = 0; }
3687 void setfname(Cell *p)
3698 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
3703 return ((Cell *)(p->narg[0]))->sval;
3717 void checkdup(Node *vl, Cell *cp) /* check if name already in list */
3721 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
H A Dytabh.bak228 Cell *cp;
H A Dytabc.bak255 void checkdup(Node *list, Cell *item);
283 Cell *cp;
2536 { infunc--; curfname=0; defn((Cell *)(yyvsp[-7].p), (yyvsp[-5].p), (yyvsp[-1].p)); (yyval.p) = 0; }
3379 void setfname(Cell *p)
3390 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
3395 return ((Cell *)(p->narg[0]))->sval;
3409 void checkdup(Node *vl, Cell *cp) /* check if name already in list */
3413 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
/macosx-10.10.1/swig-12/Lib/octave/
H A Dstd_pair.i42 Cell c=obj.cell_value();
44 error("pair from Cell array requires at least two elements");
95 Cell c=obj.cell_value();
97 error("pair from Cell array requires at least two elements");
116 Cell c(1,2);
H A Doctcontainer.swg453 $result = Cell(tmpc);
464 $result = Cell(tmpc);
612 Cell c(size,1);
/macosx-10.10.1/bzip2-36/bzip2/
H A Dbzip2.c1729 Cell; typedef in typeref:struct:zzzz
1746 Cell *mkCell ( void )
1748 Cell *c;
1750 c = (Cell*) myMalloc ( sizeof ( Cell ) );
1759 Cell *snocString ( Cell *root, Char *name )
1762 Cell *tmp = mkCell();
1768 Cell *tmp = root;
1778 void addFlagsFromEnvVar ( Cell** argLis
[all...]
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dmma.vim73 syntax keyword mmaVariable Next Previous After Before Character Word Expression TextLine CellContents Cell CellGroup EvaluationCell ButtonCell GeneratedCell Notebook

Completed in 268 milliseconds