Home
last modified time | relevance | path

Searched refs:Cell (Results 1 – 25 of 38) sorted by relevance

12

/freebsd-13.1/contrib/one-true-awk/
H A Dproto.h26 extern void setfname(Cell *);
103 extern void freesymtab(Cell *);
112 extern double getfval(Cell *);
113 extern char *getsval(Cell *);
118 extern Cell *catstr(Cell *, Cell *);
136 extern Cell *fieldadr(int);
157 extern Cell *execute(Node *);
160 extern Cell *copycell(Cell *);
161 extern Cell *arg(Node **, int);
171 extern void tfree(Cell *);
[all …]
H A Dtran.c69 Cell *literal0;
71 extern Cell **fldtab;
74 setfree(Cell *vp) in setfree()
122 Cell *cp; in arginit()
145 Cell *cp; in envinit()
171 Cell **tp; in makesymtab()
185 Cell *cp, *temp; in freesymtab()
237 Cell *p; in setsymtab()
297 Cell *p; in lookup()
552 Cell *catstr(Cell *a, Cell *b) /* concatenate a and b */ in catstr()
[all …]
H A Dawk.h93 typedef struct Cell { struct
102 } Cell; typedef
113 extern Cell *nrloc; /* NR */
114 extern Cell *fnrloc; /* FNR */
115 extern Cell *fsloc; /* FS */
116 extern Cell *nfloc; /* NF */
117 extern Cell *ofsloc; /* OFS */
118 extern Cell *orsloc; /* ORS */
119 extern Cell *rsloc; /* RS */
120 extern Cell *rstartloc; /* RSTART */
[all …]
H A Drun.c147 Cell *x; in execute()
183 Cell *x; in program()
329 Cell *y; in copycell()
359 Cell *y; in jump()
533 Cell *x; in awkdelete()
702 Cell *x; in gettemp()
721 Cell *x; in indirect()
821 Cell *x; in format()
981 Cell *x; in awksprintf()
1003 Cell *x; in awkprintf()
[all …]
H A Dlib.c46 Cell **fldtab; /* pointers to Cells */
67 || (fldtab = (Cell **) calloc(nfields+2, sizeof(*fldtab))) == NULL in recinit()
68 || (fldtab[0] = (Cell *) malloc(sizeof(**fldtab))) == NULL) in recinit()
83 fldtab[i] = (Cell *) malloc(sizeof(**fldtab)); in makefields()
283 Cell *x; in getargv()
299 Cell *q; in setclvar()
322 Cell *p; in fldbld()
430 Cell *p; in cleanfld()
466 Cell *fieldadr(int n) /* get nth field */ in fieldadr()
483 if (s / sizeof(struct Cell *) - 1 == (size_t)nf) /* didn't overflow */ in growfldtab()
[all …]
H A Dparse.c191 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 Dawkgram.y30 void checkdup(Node *list, Cell *item);
43 Cell *cp;
186 { infunc = false; curfname=0; defn((Cell *)$2, $4, $8); $$ = 0; }
469 void setfname(Cell *p)
480 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
485 return ((Cell *)(p->narg[0]))->sval;
499 void checkdup(Node *vl, Cell *cp) /* check if name already in list */
503 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_addrhashmap.h45 struct Cell { struct
53 Cell cells[1]; // variable len argument
84 Cell *cell_;
186 Cell *c = &b->cells[i]; in acquire()
199 Cell *c = &add->cells[i]; in acquire()
215 Cell *c = &b->cells[i]; in acquire()
231 Cell *c = &add->cells[i]; in acquire()
255 Cell *c = &b->cells[i]; in acquire()
288 Cell *c = &add->cells[i]; in acquire()
299 Cell *c = h->cell_; in release()
[all …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/reset/
H A Dti-syscon-reset.txt33 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 Dhisilicon,hi3660-reset.txt18 Cell #1 : offset of the reset assert control
22 Cell #2 : bit position of the reset in the reset control register
/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DWhitespaceManager.h180 unsigned Cell = 0; member
186 return Index == Other.Index && Cell == Other.Cell &&
258 static bool isSplitCell(const CellDescription &Cell);
H A DWhitespaceManager.cpp1101 bool WhitespaceManager::isSplitCell(const CellDescription &Cell) { in isSplitCell() argument
1102 if (Cell.HasSplit) in isSplitCell()
1104 for (const auto *Next = Cell.NextColumnElement; Next != nullptr; in isSplitCell()
1116 unsigned Cell = 0; in getCells() local
1131 Cell = 0; in getCells()
1149 Cell++; in getCells()
1155 Cells.push_back(CellDescription{i, ++Cell, i + 1, false, nullptr}); in getCells()
1156 CellCount = Cell + 1; in getCells()
1211 Cells.push_back(CellDescription{i, Cell, i, HasSplit, nullptr}); in getCells()
1248 if (NextIter->Cell == CellIter->Cell) { in linkCells()
/freebsd-13.1/contrib/bzip2/
H A Dbzip2.c1699 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-13.1/contrib/kyua/cli/
H A Dcmd_db_exec_test.cpp51 template< class Cell >
54 const Cell& value, const std::string& exp_value) in do_format_cell_test()
/freebsd-13.1/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dsamsung,exynos4210-combiner.txt24 * First Cell: Combiner Group Number.
25 * Second Cell: Interrupt number within the group.
H A Dsnps,arc700-intc.txt12 Single Cell "interrupts" property of a device specifies the IRQ number
H A Dsnps,archs-intc.txt9 Single Cell "interrupts" property of a device specifies the IRQ number
/freebsd-13.1/sys/contrib/device-tree/Bindings/thermal/
H A Dnvidia,tegra186-bpmp-thermal.txt20 - #thermal-sensor-cells: Cell for sensor index.
/freebsd-13.1/sys/contrib/device-tree/Bindings/mmc/
H A Dexynos-dw-mshc.txt45 - First Cell: CIU clock phase shift value for tx mode.
46 - Second Cell: CIU clock phase shift value for rx mode.
/freebsd-13.1/sys/contrib/device-tree/Bindings/mailbox/
H A Domap-mailbox.txt90 Cell #1 (fifo_id) - mailbox fifo id used either for transmitting
92 Cell #2 (irq_id) - irq identifier index number to use from the parent's
96 Cell #3 (usr_id) - mailbox user id for identifying the interrupt line
/freebsd-13.1/sys/contrib/edk2/Include/Uefi/
H A DUefiInternalFormRepresentation.h194 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-13.1/sys/contrib/device-tree/Bindings/soc/qcom/
H A Drpmh-rsc.txt74 - Cell #1 (TCS Type): TCS types to be specified -
79 - Cell #2 (Number of TCS): <u32>
/freebsd-13.1/sys/contrib/device-tree/Bindings/pinctrl/
H A Dpinctrl-st.txt69 - First Cell: represents the external gpio interrupt number local to the
71 - Second Cell: flags to identify the type of the interrupt
H A Dsamsung-pinctrl.txt135 - First Cell: represents the external gpio interrupt number local to the
137 - Second Cell: flags to identify the type of the interrupt
175 - First Cell: represents the external wakeup interrupt number local to
177 - Second Cell: flags to identify the type of the interrupt
/freebsd-13.1/sys/contrib/device-tree/Bindings/gpio/
H A Dspear_spics.txt4 Cell spi controller through its system registers, which otherwise remains under

12