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

/freebsd-11-stable/contrib/one-true-awk/
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.h76 /* Cell: all information about a variable or constant */
78 typedef struct Cell { struct
85 struct Cell *cnext; /* ptr to next if chained */
86 } Cell; typedef in typeref:struct:Cell
91 Cell **tab; /* hash table pointers */
97 extern Cell *nrloc; /* NR */
98 extern Cell *fnrloc; /* FNR */
99 extern Cell *nfloc; /* NF */
100 extern Cell *rstartloc; /* RSTART */
101 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.c45 void tempfree(Cell *p) {
47 WARNING("bad csub %d in Cell %d %s",
75 Cell *tmps; /* free temporary cells for execution */
77 static Cell truecell ={ OBOOL, BTRUE, 0, 0, 1.0, NUM };
78 Cell *True = &truecell;
79 static Cell falsecell ={ OBOOL, BFALSE, 0, 0, 0.0, NUM };
80 Cell *False = &falsecell;
81 static Cell breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM };
82 Cell *jbreak = &breakcell;
83 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));
231 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 Dawkgram.y30 void checkdup(Node *list, Cell *item);
43 Cell *cp;
185 { infunc--; curfname=0; defn((Cell *)$2, $4, $8); $$ = 0; }
447 void setfname(Cell *p)
458 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
463 return ((Cell *)(p->narg[0]))->sval;
477 void checkdup(Node *vl, Cell *cp) /* check if name already in list */
481 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_addrhashmap.h45 struct Cell { struct in class:__sanitizer::AddrHashMap
53 Cell cells[1]; // variable len
61 Cell cells[kBucketSize];
84 Cell *cell_;
186 Cell *c = &b->cells[i];
199 Cell *c = &add->cells[i];
215 Cell *c = &b->cells[i];
231 Cell *c = &add->cells[i];
255 Cell *c = &b->cells[i];
288 Cell *
[all...]
/freebsd-11-stable/contrib/bzip2/
H A Dbzip2.c1699 Cell; typedef in typeref:struct:zzzz
1716 Cell *mkCell ( void )
1718 Cell *c;
1720 c = (Cell*) myMalloc ( sizeof ( Cell ) );
1729 Cell *snocString ( Cell *root, Char *name )
1732 Cell *tmp = mkCell();
1737 Cell *tmp = root;
1747 void addFlagsFromEnvVar ( Cell** argLis
[all...]
/freebsd-11-stable/sys/contrib/edk2/Include/Uefi/
H A DUefiInternalFormRepresentation.h200 EFI_HII_GLYPH_INFO Cell; member in struct:_EFI_HII_FONT_PACKAGE_HDR
232 EFI_HII_GLYPH_INFO Cell; member in struct:_EFI_HII_GIBT_DEFAULTS_BLOCK
264 EFI_HII_GLYPH_INFO Cell; member in struct:_EFI_HII_GIBT_GLYPH_BLOCK
270 EFI_HII_GLYPH_INFO Cell; member in struct:_EFI_HII_GIBT_GLYPHS_BLOCK
288 EFI_HII_GLYPH_INFO Cell; member in struct:_EFI_HII_GIBT_VARIABILITY_BLOCK
/freebsd-11-stable/contrib/dtc/Documentation/
H A Ddtc-paper.tex460 Cell properties can also contain \emph{references}. Instead of a hex
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp70 llvm::Value *Cell = local
72 Builder.CreateAlignedStore(Value, Cell, CharUnits::One());

Completed in 208 milliseconds