| /freebsd-14.2/contrib/one-true-awk/ |
| H A D | proto.h | 26 extern void setfname(Cell *); 102 extern void freesymtab(Cell *); 111 extern double getfval(Cell *); 112 extern char *getsval(Cell *); 117 extern Cell *catstr(Cell *, Cell *); 135 extern Cell *fieldadr(int); 156 extern Cell *execute(Node *); 159 extern Cell *copycell(Cell *); 160 extern Cell *arg(Node **, int); 170 extern void tfree(Cell *); [all …]
|
| H A D | tran.c | 53 Cell *fsloc; /* FS */ 69 Cell *literal0; 71 extern Cell **fldtab; 110 Cell *cp; in arginit() 133 Cell *cp; in envinit() 159 Cell **tp; in makesymtab() 173 Cell *cp, *temp; in freesymtab() 225 Cell *p; in setsymtab() 285 Cell *p; in lookup() 543 Cell *catstr(Cell *a, Cell *b) /* concatenate a and b */ in catstr() [all …]
|
| H A D | awk.h | 97 typedef struct Cell { struct 106 } Cell; typedef 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 */ 123 extern Cell *rsloc; /* RS */ 124 extern Cell *rstartloc; /* RSTART */ [all …]
|
| H A D | run.c | 148 Cell *x; in execute() 184 Cell *x; in program() 330 Cell *y; in copycell() 360 Cell *y; in jump() 536 Cell *x; in awkdelete() 939 Cell *x; in gettemp() 958 Cell *x; in indirect() 1083 Cell *x; in format() 1393 Cell *x; in awksprintf() 1415 Cell *x; in awkprintf() [all …]
|
| H A D | lib.c | 48 Cell **fldtab; /* pointers to Cells */ 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() 338 Cell *x; in getargv() 354 Cell *q; in setclvar() 383 Cell *p; in fldbld() 523 Cell *p; in cleanfld() 559 Cell *fieldadr(int n) /* get nth field */ in fieldadr() 576 if (s / sizeof(struct Cell *) - 1 == (size_t)nf) /* didn't overflow */ in growfldtab() [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-14.2/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 89 Cell *cell_; 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() 294 Cell *c = &b->cells[i]; in acquire() 327 Cell *c = &add->cells[i]; in acquire() [all …]
|
| /freebsd-14.2/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
|
| H A D | hisilicon,hi3660-reset.yaml | 39 Cell #1 : offset of the reset assert control register from the syscon 43 Cell #2 : bit position of the reset in the reset control register
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Format/ |
| H A D | WhitespaceManager.h | 183 unsigned Cell = 0; member 189 return Index == Other.Index && Cell == Other.Cell && 276 static bool isSplitCell(const CellDescription &Cell);
|
| H A D | WhitespaceManager.cpp | 1407 bool WhitespaceManager::isSplitCell(const CellDescription &Cell) { in isSplitCell() argument 1408 if (Cell.HasSplit) in isSplitCell() 1410 for (const auto *Next = Cell.NextColumnElement; Next; in isSplitCell() 1422 unsigned Cell = 0; in getCells() local 1437 Cell = 0; in getCells() 1457 ++Cell; in getCells() 1464 Cells.push_back(CellDescription{i, ++Cell, i + 1, false, nullptr}); in getCells() 1465 CellCounts.push_back(C.Tok->Previous->isNot(tok::comma) ? Cell + 1 in getCells() 1466 : Cell); in getCells() 1532 Cells.push_back(CellDescription{i, Cell, i, HasSplit, nullptr}); in getCells() [all …]
|
| /freebsd-14.2/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-14.2/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-14.2/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 | samsung,exynos4210-combiner.yaml | 46 * First Cell: Combiner Group Number. 47 * 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-14.2/sys/contrib/device-tree/Bindings/power/supply/ |
| H A D | maxim,max77976.yaml | 13 The Maxim MAX77976 is a 19Vin / 5.5A, 1-Cell Li+ battery charger
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/thermal/ |
| H A D | nvidia,tegra186-bpmp-thermal.txt | 20 - #thermal-sensor-cells: Cell for sensor index.
|
| /freebsd-14.2/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-14.2/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-14.2/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-14.2/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>
|