Home
last modified time | relevance | path

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

123456789

/external/one-true-awk/
Dproto.h26 extern void setfname(Cell *);
85 extern Node *celltonode(Cell *, int);
90 extern void defn(Cell *, Node *, Node *);
93 extern Cell *(*proctab[])(Node **, int);
101 extern void freesymtab(Cell *);
102 extern void freeelem(Cell *, const char *);
103 extern Cell *setsymtab(const char *, const char *, double, unsigned int, Array *);
106 extern Cell *lookup(const char *, Array *);
107 extern double setfval(Cell *, double);
108 extern void funnyvar(Cell *, const char *);
[all …]
Dawk.h93 typedef struct Cell { struct
101 struct Cell *cnext; /* ptr to next if chained */ argument
102 } Cell; typedef
107 Cell **tab; /* hash table pointers */
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 */
[all …]
Dtran.c53 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 */
62 Cell *rstartloc; /* RSTART */
63 Cell *rlengthloc; /* RLENGTH */
64 Cell *subseploc; /* SUBSEP */
[all …]
Drun.c49 void tempfree(Cell *p) { in tempfree()
79 Cell *tmps; /* free temporary cells for execution */
81 static Cell truecell ={ OBOOL, BTRUE, 0, 0, 1.0, NUM, NULL, NULL };
82 Cell *True = &truecell;
83 static Cell falsecell ={ OBOOL, BFALSE, 0, 0, 0.0, NUM, NULL, NULL };
84 Cell *False = &falsecell;
85 static Cell breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM, NULL, NULL };
86 Cell *jbreak = &breakcell;
87 static Cell contcell ={ OJUMP, JCONT, 0, 0, 0.0, NUM, NULL, NULL };
88 Cell *jcont = &contcell;
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DTablesTest.java22 import com.google.common.collect.Table.Cell;
39 Collector<Cell<String, String, Integer>, ?, Table<String, String, Integer>> collector = in testToTable()
40 Tables.toTable(Cell::getRowKey, Cell::getColumnKey, Cell::getValue, HashBasedTable::create); in testToTable()
42 Equivalence.equals().<Cell<String, String, Integer>>pairwise().onResultOf(Table::cellSet); in testToTable()
56 Collector<Cell<String, String, Integer>, ?, Table<String, String, Integer>> collector = in testToTableNullMerge()
58 Cell::getRowKey, in testToTableNullMerge()
59 Cell::getColumnKey, in testToTableNullMerge()
60 Cell::getValue, in testToTableNullMerge()
64 Equivalence.equals().<Cell<String, String, Integer>>pairwise().onResultOf(Table::cellSet); in testToTableNullMerge()
73 Collector<Cell<String, String, Integer>, ?, Table<String, String, Integer>> collector = in testToTableNullValues()
[all …]
DImmutableTableTest.java25 import com.google.common.collect.Table.Cell;
48 Collector<Cell<String, String, Integer>, ?, ImmutableTable<String, String, Integer>> collector = in testToImmutableTable()
49 ImmutableTable.toImmutableTable(Cell::getRowKey, Cell::getColumnKey, Cell::getValue); in testToImmutableTable()
52 .<Cell<String, String, Integer>>pairwise() in testToImmutableTable()
67 Collector<Cell<String, String, Integer>, ?, ImmutableTable<String, String, Integer>> collector = in testToImmutableTableConflict()
68 ImmutableTable.toImmutableTable(Cell::getRowKey, Cell::getColumnKey, Cell::getValue); in testToImmutableTableConflict()
78 Collector<Cell<String, String, Integer>, ?, ImmutableTable<String, String, Integer>> collector = in testToImmutableTableNullRowKey()
79 ImmutableTable.toImmutableTable(t -> null, Cell::getColumnKey, Cell::getValue); in testToImmutableTableNullRowKey()
88 Collector<Cell<String, String, Integer>, ?, ImmutableTable<String, String, Integer>> collector = in testToImmutableTableNullColumnKey()
89 ImmutableTable.toImmutableTable(Cell::getRowKey, t -> null, Cell::getValue); in testToImmutableTableNullColumnKey()
[all …]
/external/gemmlowp/internal/
Dkernel_reference.h40 Format::Lhs::kCells, Format::Lhs::Cell::kWidth, in Name()
41 Format::Lhs::Cell::kDepth, in Name()
42 CellOrderName(Format::Lhs::Cell::kOrder), Format::Rhs::kCells, in Name()
43 Format::Rhs::Cell::kDepth, Format::Rhs::Cell::kWidth, in Name()
44 CellOrderName(Format::Rhs::Cell::kOrder)); in Name()
64 Format::Lhs::Cell::kWidth * Format::kDepth; in Run()
68 Format::Rhs::Cell::kWidth * Format::kDepth; in Run()
74 for (int ri = 0; ri < Format::Lhs::Cell::kWidth; ri++) { in Run()
75 for (int ci = 0; ci < Format::Rhs::Cell::kWidth; ci++) { in Run()
78 OffsetIntoCell<typename Format::Lhs::Cell>(ri, di); in Run()
[all …]
Dkernel.h144 typedef tCellFormat Cell; typedef
146 static constexpr int kWidth = kCells * Cell::kWidth;
147 static constexpr int kDepth = Cell::kDepth;
175 static_assert(Lhs::Cell::kDepth == Rhs::Cell::kDepth, "");
176 static constexpr int kDepth = Lhs::Cell::kDepth;
177 static constexpr int kRows = Lhs::Cell::kWidth * Lhs::kCells;
178 static constexpr int kCols = Rhs::Cell::kWidth * Rhs::kCells;
/external/guava/guava/src/com/google/common/collect/
DRegularImmutableTable.java38 abstract Cell<R, C, V> getCell(int iterationIndex); in getCell()
41 final ImmutableSet<Cell<R, C, V>> createCellSet() { in createCellSet()
42 return isEmpty() ? ImmutableSet.<Cell<R, C, V>>of() : new CellSet(); in createCellSet()
46 private final class CellSet extends IndexedImmutableSet<Cell<R, C, V>> {
53 Cell<R, C, V> get(int index) { in get()
59 if (object instanceof Cell) { in contains()
60 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) object; in contains()
99 List<Cell<R, C, V>> cells, in forCells()
111 Comparator<Cell<R, C, V>> comparator = in forCells()
112 new Comparator<Cell<R, C, V>>() { in forCells()
[all …]
DAbstractTable.java105 for (Table.Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) { in putAll()
110 @LazyInit private transient @Nullable Set<Cell<R, C, V>> cellSet;
113 public Set<Cell<R, C, V>> cellSet() { in cellSet()
114 Set<Cell<R, C, V>> result = cellSet; in cellSet()
118 Set<Cell<R, C, V>> createCellSet() { in createCellSet()
122 abstract Iterator<Table.Cell<R, C, V>> cellIterator(); in cellIterator()
124 abstract Spliterator<Table.Cell<R, C, V>> cellSpliterator(); in cellSpliterator()
127 class CellSet extends AbstractSet<Cell<R, C, V>> {
130 if (o instanceof Cell) { in contains()
131 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; in contains()
[all …]
/external/rust/crates/pin-project/tests/
Ddrop_order.rs5 use std::{cell::Cell, pin::Pin, thread};
9 struct D<'a>(&'a Cell<usize>, usize);
61 let c = Cell::new(0); in struct_pinned()
65 let c = Cell::new(0); in struct_pinned()
75 let c = Cell::new(0); in struct_unpinned()
79 let c = Cell::new(0); in struct_unpinned()
89 let c = Cell::new(0); in tuple_pinned()
93 let c = Cell::new(0); in tuple_pinned()
103 let c = Cell::new(0); in tuple_unpinned()
107 let c = Cell::new(0); in tuple_unpinned()
[all …]
/external/guava/android/guava/src/com/google/common/collect/
DRegularImmutableTable.java38 abstract Cell<R, C, V> getCell(int iterationIndex); in getCell()
41 final ImmutableSet<Cell<R, C, V>> createCellSet() { in createCellSet()
42 return isEmpty() ? ImmutableSet.<Cell<R, C, V>>of() : new CellSet(); in createCellSet()
46 private final class CellSet extends IndexedImmutableSet<Cell<R, C, V>> {
53 Cell<R, C, V> get(int index) { in get()
59 if (object instanceof Cell) { in contains()
60 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) object; in contains()
99 List<Cell<R, C, V>> cells, in forCells()
111 Comparator<Cell<R, C, V>> comparator = in forCells()
112 new Comparator<Cell<R, C, V>>() { in forCells()
[all …]
DAbstractTable.java104 for (Table.Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) { in putAll()
109 @LazyInit @NullableDecl private transient Set<Cell<R, C, V>> cellSet;
112 public Set<Cell<R, C, V>> cellSet() { in cellSet()
113 Set<Cell<R, C, V>> result = cellSet; in cellSet()
117 Set<Cell<R, C, V>> createCellSet() { in createCellSet()
121 abstract Iterator<Table.Cell<R, C, V>> cellIterator(); in cellIterator()
124 class CellSet extends AbstractSet<Cell<R, C, V>> {
127 if (o instanceof Cell) { in contains()
128 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; in contains()
139 if (o instanceof Cell) { in remove()
[all …]
DTables.java27 import com.google.common.collect.Table.Cell;
61 public static <R, C, V> Cell<R, C, V> immutableCell( in immutableCell()
95 abstract static class AbstractCell<R, C, V> implements Cell<R, C, V> {
104 if (obj instanceof Cell) { in equals()
105 Cell<?, ?, ?> other = (Cell<?, ?, ?>) obj; in equals()
235 private static final Function<Cell<?, ?, ?>, Cell<?, ?, ?>> TRANSPOSE_CELL =
236 new Function<Cell<?, ?, ?>, Cell<?, ?, ?>>() {
238 public Cell<?, ?, ?> apply(Cell<?, ?, ?> cell) {
245 Iterator<Cell<C, R, V>> cellIterator() { in cellIterator()
382 Function<Cell<R, C, V1>, Cell<R, C, V2>> cellFunction() { in cellFunction()
[all …]
/external/libtextclassifier/native/lang_id/common/
Dregistry.h161 const Cell *old_cell = FindCell(key); in Add()
166 Cell *new_cell = new Cell(key, value, head_); in Add()
174 const Cell *cell = FindCell(key); in Lookup()
190 for (const Cell *c = head_; c!= nullptr; c = c->next()) { in GetComponentNames()
199 class Cell {
202 Cell(const char *key, T *value, Cell *next) in Cell() function
207 Cell *next() const { return next_; } in next()
212 Cell *const next_;
220 const Cell *FindCell(const char *key) const { in FindCell()
221 const Cell *c = head_; in FindCell()
[all …]
/external/markdown/tests/extensions-x-tables/
Dtables.txt6 Content Cell | Content Cell
7 Content Cell | Content Cell
11 | Content Cell | Content Cell |
12 | Content Cell | Content Cell |
/external/guava/guava/src/com/google/common/hash/
DStriped64.java95 static final class Cell { class in Striped64
100 Cell(long x) { in Cell() method in Striped64.Cell
115 Class<?> ak = Cell.class;
137 transient volatile Cell @Nullable [] cells;
189 Cell[] as; in retryUpdate()
190 Cell a; in retryUpdate()
196 Cell r = new Cell(x); // Optimistically create in retryUpdate()
200 Cell[] rs; in retryUpdate()
222 Cell[] rs = new Cell[n << 1]; in retryUpdate()
240 Cell[] rs = new Cell[2]; in retryUpdate()
[all …]
/external/guava/android/guava/src/com/google/common/hash/
DStriped64.java95 static final class Cell { class in Striped64
100 Cell(long x) { in Cell() method in Striped64.Cell
115 Class<?> ak = Cell.class;
137 @NullableDecl transient volatile Cell[] cells;
189 Cell[] as; in retryUpdate()
190 Cell a; in retryUpdate()
196 Cell r = new Cell(x); // Optimistically create in retryUpdate()
200 Cell[] rs; in retryUpdate()
222 Cell[] rs = new Cell[n << 1]; in retryUpdate()
240 Cell[] rs = new Cell[2]; in retryUpdate()
[all …]
/external/guava/android/guava/src/com/google/common/cache/
DStriped64.java95 static final class Cell { class in Striped64
100 Cell(long x) { in Cell() method in Striped64.Cell
115 Class<?> ak = Cell.class;
137 @NullableDecl transient volatile Cell[] cells;
189 Cell[] as; in retryUpdate()
190 Cell a; in retryUpdate()
196 Cell r = new Cell(x); // Optimistically create in retryUpdate()
200 Cell[] rs; in retryUpdate()
222 Cell[] rs = new Cell[n << 1]; in retryUpdate()
240 Cell[] rs = new Cell[2]; in retryUpdate()
[all …]
/external/guava/guava/src/com/google/common/cache/
DStriped64.java95 static final class Cell { class in Striped64
100 Cell(long x) { in Cell() method in Striped64.Cell
115 Class<?> ak = Cell.class;
137 transient volatile Cell @Nullable [] cells;
189 Cell[] as; in retryUpdate()
190 Cell a; in retryUpdate()
196 Cell r = new Cell(x); // Optimistically create in retryUpdate()
200 Cell[] rs; in retryUpdate()
222 Cell[] rs = new Cell[n << 1]; in retryUpdate()
240 Cell[] rs = new Cell[2]; in retryUpdate()
[all …]
/external/markdown/docs/extensions/
DTables.txt22 Content Cell | Content Cell
23 Content Cell | Content Cell
36 <td>Content Cell</td>
37 <td>Content Cell</td>
41 <td>Content Cell</td>
42 <td>Content Cell</td>
/external/rust/crates/pin-project-lite/tests/
Ddrop_order.rs6 use std::{cell::Cell, panic, pin::Pin, thread};
8 struct D<'a>(&'a Cell<usize>, usize);
62 let c = Cell::new(0); in struct_pinned()
66 let c = Cell::new(0); in struct_pinned()
76 let c = Cell::new(0); in struct_unpinned()
80 let c = Cell::new(0); in struct_unpinned()
90 let c = Cell::new(0); in enum_struct()
94 let c = Cell::new(0); in enum_struct()
101 let c = Cell::new(0); in enum_struct()
105 let c = Cell::new(0); in enum_struct()
/external/llvm-project/clang/test/Analysis/inlining/
Dretain-count-self-init.m27 @interface Cell : ParentOfCell{ interface
34 @implementation Cell implementation
59 Cell *sharedCell1 = [[Cell alloc] init];
61 Cell *sharedCell2 = [[Cell alloc] initWithInt: 3];
63 Cell *sharedCell3 = [[Cell alloc] initWithIntGood: 3];
/external/clang/test/Analysis/inlining/
Dretain-count-self-init.m27 @interface Cell : ParentOfCell{ interface
34 @implementation Cell implementation
59 Cell *sharedCell1 = [[Cell alloc] init];
61 Cell *sharedCell2 = [[Cell alloc] initWithInt: 3];
63 Cell *sharedCell3 = [[Cell alloc] initWithIntGood: 3];
/external/guava/android/guava-tests/test/com/google/common/collect/
DTablesTest.java21 import com.google.common.collect.Table.Cell;
36 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testImmutableEntrySerialization()
41 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testImmutableEntryToString()
44 Cell<String, Integer, Character> nullEntry = Tables.immutableCell(null, null, null); in testImmutableEntryToString()
49 Cell<String, Integer, Character> entry = Tables.immutableCell("foo", 1, 'a'); in testEntryEquals()
61 Cell<String, Integer, Character> entry = Tables.immutableCell(null, null, null); in testEntryEqualsNull()

123456789