/freebsd/contrib/one-true-awk/ |
H A D | proto.h | 26 extern void setfname(Cell *); 83 extern Node *celltonode(Cell *, int); 88 extern void defn(Cell *, Node *, Node *); 91 extern Cell *(*proctab[])(Node **, int); 99 extern void freesymtab(Cell *); 100 extern void freeelem(Cell *, const char *); 101 extern Cell *setsymtab(const char *, const char *, double, unsigned int, Array *); 104 extern Cell *lookup(const char *, Array *); 105 extern double setfval(Cell *, double); 106 extern void funnyvar(Cell *, const char *); [all …]
|
H A D | tran.c | 53 Cell *fsloc; /* FS */ 54 Cell *nrloc; /* NR */ 55 Cell *nfloc; /* NF */ 56 Cell *fnrloc; /* FNR */ 57 Cell *ofsloc; /* OFS */ 58 Cell *orsloc; /* ORS */ 59 Cell *rsloc; /* RS */ 60 Cell *ARGVcell; /* cell with symbol table containing ARGV[...] */ 61 Cell *rstartloc; /* RSTART */ 62 Cell *rlengthloc; /* RLENGTH */ [all …]
|
H A D | awk.h | 97 typedef struct Cell { struct 105 struct Cell *cnext; /* ptr to next if chained */ argument 106 } Cell; typedef 111 Cell **tab; /* hash table pointers */ 117 extern Cell *nrloc; /* NR */ 118 extern Cell *fnrloc; /* FNR */ 119 extern Cell *fsloc; /* FS */ 120 extern Cell *nfloc; /* NF */ 121 extern Cell *ofsloc; /* OFS */ 122 extern Cell *orsloc; /* ORS */ [all …]
|
H A D | run.c | 51 void tempfree(Cell *p) { in tempfree() 81 Cell *tmps; /* free temporary cells for execution */ 83 static Cell truecell ={ OBOOL, BTRUE, 0, 0, 1.0, NUM, NULL, NULL }; 84 Cell *True = &truecell; 85 static Cell falsecell ={ OBOOL, BFALSE, 0, 0, 0.0, NUM, NULL, NULL }; 86 Cell *False = &falsecell; 87 static Cell breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM, NULL, NULL }; 88 Cell *jbreak = &breakcell; 89 static Cell contcell ={ OJUMP, JCONT, 0, 0, 0.0, NUM, NULL, NULL }; 90 Cell *jcont = &contcell; [all …]
|
H A D | lib.c | 48 Cell **fldtab; /* pointers to Cells */ 62 static Cell dollar0 = { OCELL, CFLD, NULL, EMPTY, 0.0, REC|STR|DONTFREE, NULL, NULL }; 63 static Cell dollar1 = { OCELL, CFLD, NULL, EMPTY, 0.0, FLD|STR|DONTFREE, NULL, NULL }; 69 || (fldtab = (Cell **) calloc(nfields+2, sizeof(*fldtab))) == NULL in recinit() 70 || (fldtab[0] = (Cell *) malloc(sizeof(**fldtab))) == NULL) in recinit() 85 fldtab[i] = (Cell *) malloc(sizeof(**fldtab)); in makefields() 339 Cell *x; in getargv() 341 extern Cell *ARGVcell; in getargv() 356 Cell *q; in setclvar() 385 Cell *p; in fldbld() [all …]
|
H A D | parse.c | 191 Node *celltonode(Cell *a, int b) in celltonode() 204 extern Cell *literal0; in rectonode() 210 Cell *cp; in makearr() 213 cp = (Cell *) (p->narg[0]); in makearr() 256 void defn(Cell *v, Node *vl, Node *st) /* turn on FCN bit in definition, */ in defn() 286 if (strcmp(((Cell *)(p->narg[0]))->nval, s) == 0) in isarg()
|
H A D | awkgram.y | 30 void checkdup(Node *list, Cell *item); 43 Cell *cp; 186 { infunc = false; curfname=0; defn((Cell *)$2, $4, $8); $$ = 0; } 476 void setfname(Cell *p) 487 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON; 492 return ((Cell *)(p->narg[0]))->sval; 506 void checkdup(Node *vl, Cell *cp) /* check if name already in list */ 510 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_addrhashmap.h | 50 struct Cell { struct 58 Cell cells[1]; // variable len argument 66 Cell cells[kBucketSize]; 89 Cell *cell_; 120 Cell *c = &bucket->cells[i]; in ForEach() 130 Cell *c = &add->cells[i]; in ForEach() 225 Cell *c = &b->cells[i]; in acquire() 238 Cell *c = &add->cells[i]; in acquire() 254 Cell *c = &b->cells[i]; in acquire() 270 Cell *c = &add->cells[i]; in acquire() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/reset/ |
H A D | ti-syscon-reset.txt | 33 Cell #1 : offset of the reset assert control 35 Cell #2 : bit position of the reset in the reset 37 Cell #3 : offset of the reset deassert control 39 Cell #4 : bit position of the reset in the reset 41 Cell #5 : offset of the reset status register 43 Cell #6 : bit position of the reset in the 45 Cell #7 : Flags used to control reset behavior,
|
H A D | hisilicon,hi3660-reset.txt | 18 Cell #1 : offset of the reset assert control 22 Cell #2 : bit position of the reset in the reset control register
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | WhitespaceManager.h | 178 unsigned Cell = 0; member 184 return Index == Other.Index && Cell == Other.Cell && 285 static bool isSplitCell(const CellDescription &Cell);
|
H A D | WhitespaceManager.cpp | 1447 bool WhitespaceManager::isSplitCell(const CellDescription &Cell) { in isSplitCell() argument 1448 if (Cell.HasSplit) in isSplitCell() 1450 for (const auto *Next = Cell.NextColumnElement; Next; in isSplitCell() 1462 unsigned Cell = 0; in getCells() local 1477 Cell = 0; in getCells() 1497 ++Cell; in getCells() 1504 Cells.push_back(CellDescription{i, ++Cell, i + 1, false, nullptr}); in getCells() 1505 CellCounts.push_back(C.Tok->Previous->isNot(tok::comma) ? Cell + 1 in getCells() 1506 : Cell); in getCells() 1572 Cells.push_back(CellDescription{i, Cell, i, HasSplit, nullptr}); in getCells() [all …]
|
/freebsd/contrib/bzip2/ |
H A D | bzip2.c | 1699 Cell; typedef 1716 Cell *mkCell ( void ) in mkCell() 1718 Cell *c; in mkCell() 1720 c = (Cell*) myMalloc ( sizeof ( Cell ) ); in mkCell() 1729 Cell *snocString ( Cell *root, Char *name ) in snocString() 1732 Cell *tmp = mkCell(); in snocString() 1737 Cell *tmp = root; in snocString() 1747 void addFlagsFromEnvVar ( Cell** argList, Char* varName ) in addFlagsFromEnvVar() 1780 Cell *argList; in main() 1781 Cell *aa; in main() [all …]
|
/freebsd/contrib/kyua/cli/ |
H A D | cmd_db_exec_test.cpp | 51 template< class Cell > 54 const Cell& value, const std::string& exp_value) in do_format_cell_test()
|
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
H A D | samsung,exynos4210-combiner.txt | 24 * First Cell: Combiner Group Number. 25 * Second Cell: Interrupt number within the group.
|
H A D | snps,arc700-intc.txt | 12 Single Cell "interrupts" property of a device specifies the IRQ number
|
H A D | snps,archs-intc.txt | 9 Single Cell "interrupts" property of a device specifies the IRQ number
|
/freebsd/sys/contrib/device-tree/Bindings/thermal/ |
H A D | nvidia,tegra186-bpmp-thermal.txt | 20 - #thermal-sensor-cells: Cell for sensor index.
|
/freebsd/sys/contrib/device-tree/Bindings/mmc/ |
H A D | exynos-dw-mshc.txt | 47 - First Cell: CIU clock phase shift value for tx mode. 48 - Second Cell: CIU clock phase shift value for rx mode.
|
/freebsd/sys/contrib/edk2/Include/Uefi/ |
H A D | UefiInternalFormRepresentation.h | 194 EFI_HII_GLYPH_INFO Cell; member 226 EFI_HII_GLYPH_INFO Cell; member 258 EFI_HII_GLYPH_INFO Cell; member 264 EFI_HII_GLYPH_INFO Cell; member 282 EFI_HII_GLYPH_INFO Cell; member
|
/freebsd/sys/contrib/device-tree/Bindings/mailbox/ |
H A D | omap-mailbox.txt | 94 Cell #1 (fifo_id) - mailbox fifo id used either for transmitting 96 Cell #2 (irq_id) - irq identifier index number to use from the parent's 100 Cell #3 (usr_id) - mailbox user id for identifying the interrupt line
|
/freebsd/sys/contrib/device-tree/Bindings/soc/qcom/ |
H A D | rpmh-rsc.txt | 74 - Cell #1 (TCS Type): TCS types to be specified - 79 - Cell #2 (Number of TCS): <u32>
|
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
H A D | pinctrl-st.txt | 69 - First Cell: represents the external gpio interrupt number local to the 71 - Second Cell: flags to identify the type of the interrupt
|
H A D | samsung-pinctrl.txt | 138 - First Cell: represents the external gpio interrupt number local to the 140 - Second Cell: flags to identify the type of the interrupt 178 - First Cell: represents the external wakeup interrupt number local to 180 - Second Cell: flags to identify the type of the interrupt
|
/freebsd/sys/contrib/device-tree/Bindings/gpio/ |
H A D | spear_spics.txt | 4 Cell spi controller through its system registers, which otherwise remains under
|