HomeSort by relevance Sort by last modified time
    Searched refs:Cell (Results 1 - 25 of 293) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/one-true-awk/
proto.h 26 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 *, const char *)
    [all...]
awk.h 76 /* Cell: all information about a variable or constant */
78 typedef struct Cell {
85 struct Cell *cnext; /* ptr to next if chained */
86 } 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 *rlengthloc; /* RLENGTH *
    [all...]
tran.c 54 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
    [all...]
run.c 42 void tempfree(Cell *p) {
44 WARNING("bad csub %d in Cell %d %s",
72 Cell *tmps; /* free temporary cells for execution */
74 static Cell truecell ={ OBOOL, BTRUE, 0, 0, 1.0, NUM };
75 Cell *True = &truecell;
76 static Cell falsecell ={ OBOOL, BFALSE, 0, 0, 0.0, NUM };
77 Cell *False = &falsecell;
78 static Cell breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM };
79 Cell *jbreak = &breakcell;
80 static Cell contcell ={ OJUMP, JCONT, 0, 0, 0.0, NUM }
    [all...]
  /external/guava/guava/src/com/google/common/cache/
Striped64.java 31 * Table entries are of class Cell; a variant of AtomicLong padded
62 * available, a new Cell is created. Otherwise, if the slot
78 * It is possible for a Cell to become unused when threads that
95 static final class Cell {
101 Cell(long x) { value = x; }
107 private static final AtomicLongFieldUpdater<Cell> valueUpdater =
108 AtomicLongFieldUpdater.newUpdater(Cell.class, "value");
130 transient volatile Cell[] cells;
168 * @param currentValue the current value (of either base or a cell)
196 Cell[] as; Cell a; int n; long v
    [all...]
LongAdder.java 70 Cell[] as; long b, v; int[] hc; Cell a; int n;
106 Cell[] as = cells;
110 Cell a = as[i];
141 Cell[] as = cells;
146 Cell a = as[i];
  /libcore/ojluni/src/main/java/java/util/concurrent/atomic/
LongAdder.java 86 Cell[] as; long b, v; int m; Cell a;
120 Cell[] as = cells;
123 for (Cell a : as)
138 Cell[] as = cells;
141 for (Cell a : as)
158 Cell[] as = cells;
162 for (Cell a : as) {
Striped64.java 57 * Table entries are of class Cell; a variant of AtomicLong padded
91 * available, a new Cell is created. Otherwise, if the slot
107 * It is possible for a Cell to become unused when threads that
123 static final class Cell {
125 Cell(long x) { value = x; }
142 (Cell.class.getDeclaredField("value"));
155 transient volatile Cell[] cells;
231 Cell[] as; Cell a; int n; long v;
234 if (cellsBusy == 0) { // Try to attach new Cell
    [all...]
DoubleAccumulator.java 103 Cell[] as; long b, v, r; int m; Cell a;
130 Cell[] as = cells;
133 for (Cell a : as)
150 Cell[] as = cells;
153 for (Cell a : as)
170 Cell[] as = cells;
174 for (Cell a : as) {
DoubleAdder.java 90 Cell[] as; long b, v; int m; Cell a;
118 Cell[] as = cells;
121 for (Cell a : as)
136 Cell[] as = cells;
139 for (Cell a : as)
156 Cell[] as = cells;
160 for (Cell a : as) {
LongAccumulator.java 105 Cell[] as; long b, v, r; int m; Cell a;
128 Cell[] as = cells;
131 for (Cell a : as)
147 Cell[] as = cells;
150 for (Cell a : as)
167 Cell[] as = cells;
171 for (Cell a : as) {
  /external/gemmlowp/internal/
kernel_reference.h 40 Format::Lhs::kCells, Format::Lhs::Cell::kWidth,
41 Format::Lhs::Cell::kDepth,
42 CellOrderName(Format::Lhs::Cell::kOrder), Format::Rhs::kCells,
43 Format::Rhs::Cell::kDepth, Format::Rhs::Cell::kWidth,
44 CellOrderName(Format::Rhs::Cell::kOrder));
64 Format::Lhs::Cell::kWidth * Format::kDepth;
68 Format::Rhs::Cell::kWidth * Format::kDepth;
70 // Now we are inside one cell of the Lhs and inside one cell
    [all...]
kernel.h 95 // 3 cells, each cell having dimensions (width=3, depth=4), laid out in
122 // a cell (see explanation above).
126 // out in a cell. That is, a CellOrder together with actual dimensions.
144 typedef tCellFormat Cell;
146 static const int kWidth = kCells * Cell::kWidth;
147 static const int kDepth = Cell::kDepth;
163 static_assert(Lhs::Cell::kDepth == Rhs::Cell::kDepth, "");
164 static const int kDepth = Lhs::Cell::kDepth;
165 static const int kRows = Lhs::Cell::kWidth * Lhs::kCells
    [all...]
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableTable.java 37 abstract Cell<R, C, V> getCell(int iterationIndex);
40 final ImmutableSet<Cell<R, C, V>> createCellSet() {
41 return isEmpty() ? ImmutableSet.<Cell<R, C, V>>of() : new CellSet();
44 private final class CellSet extends ImmutableSet<Cell<R, C, V>> {
51 public UnmodifiableIterator<Cell<R, C, V>> iterator() {
56 ImmutableList<Cell<R, C, V>> createAsList() {
57 return new ImmutableAsList<Cell<R, C, V>>() {
59 public Cell<R, C, V> get(int index) {
64 ImmutableCollection<Cell<R, C, V>> delegateCollection() {
72 if (object instanceof Cell) {
73 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) object; local
    [all...]
AbstractTable.java 101 for (Table.Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
102 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
106 private transient Set<Cell<R, C, V>> cellSet;
109 public Set<Cell<R, C, V>> cellSet() {
110 Set<Cell<R, C, V>> result = cellSet;
114 Set<Cell<R, C, V>> createCellSet() {
118 abstract Iterator<Table.Cell<R, C, V>> cellIterator()
124 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; local
135 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; local
    [all...]
ImmutableTable.java 51 ImmutableList.<Cell<Object, Object, Object>>of(),
60 /** Returns an immutable table containing a single cell. */
93 Cell<? extends R, ? extends C, ? extends V> onlyCell
98 ImmutableSet.Builder<Cell<R, C, V>> cellSetBuilder
100 for (Cell<? extends R, ? extends C, ? extends V> cell :
103 * Must cast to be able to create a Cell<R, C, V> rather than a
104 * Cell<? extends R, ? extends C, ? extends V>
106 cellSetBuilder.add(cellOf((R) cell.getRowKey(),
107 (C) cell.getColumnKey(), (V) cell.getValue()))
    [all...]
Tables.java 27 import com.google.common.collect.Table.Cell;
56 * Returns an immutable cell with the specified row key, column key, and
59 * <p>The returned cell is serializable.
61 * @param rowKey the row key to be associated with the returned cell
62 * @param columnKey the column key to be associated with the returned cell
63 * @param value the value to be associated with the returned cell
65 public static <R, C, V> Cell<R, C, V> immutableCell(
99 abstract static class AbstractCell<R, C, V> implements Cell<R, C, V> {
107 if (obj instanceof Cell) {
108 Cell<?, ?, ?> other = (Cell<?, ?, ?>) obj
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
TablesTest.java 20 import com.google.common.collect.Table.Cell;
34 Cell<String, Integer, Character> entry
38 Cell<String, Integer, Character> nullEntry
44 Cell<String, Integer, Character> entry
57 Cell<String, Integer, Character> entry
  /external/guava/guava-tests/test/com/google/common/collect/
TablesTest.java 21 import com.google.common.collect.Table.Cell;
37 Cell<String, Integer, Character> entry
43 Cell<String, Integer, Character> entry
47 Cell<String, Integer, Character> nullEntry
53 Cell<String, Integer, Character> entry
66 Cell<String, Integer, Character> entry
  /external/libchrome/base/trace_event/
heap_profiler_allocation_register.h 58 cells_(static_cast<Cell*>(
59 AllocateGuardedVirtualMemory(num_cells_ * sizeof(Cell)))),
66 FreeGuardedVirtualMemory(cells_, num_cells_ * sizeof(Cell));
72 Cell** p_cell = Lookup(key);
73 Cell* cell = *p_cell; local
74 if (cell) {
75 return {static_cast<KVIndex>(cell - cells_), false}; // not inserted
78 // Get a free cell and link it.
79 cell = GetFreeCell()
101 Cell* cell = &cells_[index]; local
116 Cell* cell = *Lookup(key); local
195 Cell* cell = free_list_; local
    [all...]
  /packages/apps/Car/Settings/src/com/android/car/settings/security/
SavePatternWorker.java 28 private List<LockPatternView.Cell> mChosenPattern;
31 void start(int userId, List<LockPatternView.Cell> chosenPattern, String currentPattern) {
ChooseLockPatternFragment.java 32 import com.android.internal.widget.LockPatternView.Cell;
61 private List<LockPatternView.Cell> mChosenPattern;
378 public void onPatternDetected(List<LockPatternView.Cell> pattern) {
395 public void onPatternCellAdded(List<Cell> pattern) {}
397 private void handleConfirmPattern(List<LockPatternView.Cell> pattern) {
409 private void handlePatternEntered(List<LockPatternView.Cell> pattern) {
413 mChosenPattern = new ArrayList<LockPatternView.Cell>(pattern);
455 private final List<LockPatternView.Cell> mAnimatePattern =
457 LockPatternView.Cell.of(0, 0),
458 LockPatternView.Cell.of(0, 1)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
Font.c 43 Insert a character cell information to the list specified by GlyphInfoList.
50 @param Cell Incoming character cell information.
52 @retval EFI_SUCCESS Cell information is added to the GlyphInfoList.
61 IN EFI_HII_GLYPH_INFO *Cell
66 ASSERT (Cell != NULL && GlyphInfoList != NULL);
74 // GlyphInfoList stores a list of default character cell information, each is
79 if (Cell->AdvanceX == 0) {
80 Cell->AdvanceX = Cell->Width;
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_addrhashmap.h 46 struct Cell {
54 Cell cells[1]; // variable len
62 Cell cells[kBucketSize];
83 Cell *cell_;
175 Cell *c = &b->cells[i];
188 Cell *c = &add->cells[i];
204 Cell *c = &b->cells[i];
220 Cell *c = &add->cells[i];
242 // See if we have a free embed cell.
244 Cell *c = &b->cells[i]
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 87 private static class Cell extends IElement.Factory.ElementImpl
97 Cell (Tag tag)
110 final ICell cell = new Cell (m_th ? Tag.TH : Tag.TD); local
111 add (cell);
113 return cell;

Completed in 263 milliseconds

1 2 3 4 5 6 7 8 91011>>