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

1 2 3 4 5

  /external/v8/tools/
consarray.js 40 this.tail_ = new ConsArray.Cell(null, null);
56 this.tail_ = this.tail_.next = new ConsArray.Cell(null, null);
85 * A cell object used for constructing a list in ConsArray.
89 ConsArray.Cell = function(data, next) {
  /external/libchrome/sandbox/linux/bpf_dsl/
cons.h 21 // have a "head" and a "tail" element. A cell's head element contains
23 // null) pointer to another cell.
32 // function, which will allocate a new cons cell. Notably, cons lists
58 class Cell;
62 // List represents a (possibly null) pointer to a cons cell.
64 using List = std::shared_ptr<const Cell<T>>;
69 return std::make_shared<Cell<T>>(head, std::move(tail));
72 // Cell represents an individual "cons cell" within a cons list.
74 class Cell {
    [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;
  /external/gemmlowp/internal/
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/
Table.java 115 * equal when their cell views, as returned by {@link #cellSet}, are equal.
122 * as the hash code of its cell view, as returned by {@link #cellSet}.
196 * returned set will update the underlying table, and vice versa. The cell set
202 Set<Cell<R, C, V>> cellSet();
264 interface Cell<R, C, V> {
266 * Returns the row key of this cell.
271 * Returns the column key of this cell.
276 * Returns the value of this cell.
281 * Compares the specified object with this cell for equality. Two cells are
288 * Returns the hash code of this cell
    [all...]
  /external/libtextclassifier/common/
registry.h 144 const Cell *old_cell = FindCell(key);
149 Cell *new_cell = new Cell(key, value, head_);
157 const Cell *cell = FindCell(key); local
158 if (cell == nullptr) {
161 return (cell == nullptr) ? nullptr : cell->value();
170 // Cell for the singly-linked list underlying this ComponentRegistry. Each
171 // cell contains a key, the value for that key, as well as a pointer to th
    [all...]
  /external/python/cpython2/Mac/Modules/list/
listsupport.py 26 Cell = Point
126 Cell theCell,
  /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/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...]
  /external/libchrome/base/trace_event/
heap_profiler_allocation_register.h 57 cells_(static_cast<Cell*>(
58 AllocateGuardedVirtualMemory(num_cells_ * sizeof(Cell)))),
65 FreeGuardedVirtualMemory(cells_, num_cells_ * sizeof(Cell));
70 Cell** p_cell = Lookup(key);
71 Cell* cell = *p_cell; local
72 if (cell) {
73 return {static_cast<KVIndex>(cell - cells_), false}; // not inserted
76 // Get a free cell and link it.
77 *p_cell = cell = GetFreeCell()
91 Cell* cell = &cells_[index]; local
106 Cell* cell = *Lookup(key); local
182 Cell* cell = free_list_; local
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/atomic/
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...]
  /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...]
HiiDatabase.h 194 EFI_HII_GLYPH_INFO Cell;
471 @retval EFI_SUCCESS Cell information is added to the GlyphInfoList.
526 If CharValue = (CHAR16) (-1), collect all default character cell information
535 @param Cell Output cell information of the encoded bitmap.
550 OUT EFI_HII_GLYPH_INFO *Cell, OPTIONAL
608 of the image of the first character cell in the
611 of the image of the first character cell in the
683 of the image of the first character cell in the
686 of the image of the first character cell in the
    [all...]
  /external/toolchain-utils/cros_utils/
tabulator.py 229 def _Literal(self, cell, values, baseline_values):
230 cell.value = ' '.join([str(v) for v in values])
232 def _ComputeFloat(self, cell, values, baseline_values):
233 self._Literal(cell, values, baseline_values)
235 def _ComputeString(self, cell, values, baseline_values):
236 self._Literal(cell, values, baseline_values)
238 def _InvertIfLowerIsBetter(self, cell):
252 def Compute(self, cell, values, baseline_values):
256 cell: A cell data structure to populate
    [all...]
  /external/gemmlowp/standalone/
neon-gemm-kernel-benchmark.cc 160 // 3 cells, each cell having dimensions (width=3, depth=4), laid out in
187 // a cell (see explanation above).
191 // out in a cell. That is, a CellOrder together with actual dimensions.
209 typedef tCellFormat Cell;
211 static const int kWidth = kCells * Cell::kWidth;
212 static const int kDepth = Cell::kDepth;
222 static_assert(Lhs::Cell::kDepth == Rhs::Cell::kDepth, "");
223 static const int kDepth = Lhs::Cell::kDepth;
224 static const int kRows = Lhs::Cell::kWidth * Lhs::kCells
    [all...]
  /external/bzip2/
bzip2.c     [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 66 llvm::Value *Cell =
68 Builder.CreateAlignedStore(Value, Cell, CharUnits::One());
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 102 private final ArrayList<Cell> mPattern = new ArrayList<Cell>(9);
152 * Represents a cell in the 3 X 3 matrix of the unlock pattern view.
154 public static final class Cell {
159 private static final Cell[][] sCells = createCells();
161 private static Cell[][] createCells() {
162 Cell[][] res = new Cell[3][3];
165 res[i][j] = new Cell(i, j);
172 * @param row The row of the cell
688 final Cell cell = checkForNewHit(x, y); local
1072 final Cell cell = pattern.get(i); local
    [all...]
  /external/v8/src/
factory.cc 1171 Handle<Cell> cell = NewCell(value); local
1177 Handle<Cell> cell = NewCell(value); local
1183 Handle<Cell> cell = NewCell(value); local
1789 Handle<PropertyCell> cell = NewPropertyCell(); local
2629 WeakCell* cell = WeakCell::cast(result); local
2638 Handle<WeakCell> cell = NewWeakCell(map); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adomd.h 36 typedef interface Cell Cell;
231 virtual HRESULT STDMETHODCALLTYPE get_Item (SAFEARRAY **idx, Cell **ppvObject) = 0;
254 HRESULT (STDMETHODCALLTYPE *get_Item) (ICellset *This, SAFEARRAY **idx, Cell **ppvObject);
307 Cell : public IDispatch {
319 BEGIN_INTERFACE HRESULT (STDMETHODCALLTYPE *QueryInterface) (Cell *This, REFIID riid, _COM_Outptr_ void **ppvObject);
320 ULONG (STDMETHODCALLTYPE *AddRef) (Cell *This);
321 ULONG (STDMETHODCALLTYPE *Release) (Cell *This);
322 HRESULT (STDMETHODCALLTYPE *GetTypeInfoCount) (Cell *This, UINT *pctinfo);
323 HRESULT (STDMETHODCALLTYPE *GetTypeInfo) (Cell *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)
    [all...]
  /external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp 1934 Cell<int> cell; local
3557 Cell<int> cell; local
3570 Cell<int> cell; local
3591 Cell<int> cell; local
3607 Cell<int> cell; local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
UefiInternalFormRepresentation.h 160 EFI_HII_GLYPH_INFO Cell;
184 EFI_HII_GLYPH_INFO Cell;
216 EFI_HII_GLYPH_INFO Cell;
217 UINT8 BitmapData[1]; // the number of bytes per bitmap can be calculated by ((Cell.Width+7)/8)*Cell.Height
222 EFI_HII_GLYPH_INFO Cell;
224 UINT8 BitmapData[1]; // the number of bytes per bitmap can be calculated by ((Cell.Width+7)/8)*Cell.Height
229 UINT8 BitmapData[1]; // the number of bytes per bitmap can be calculated by ((Global.Cell.Width+7)/8)*Global.Cell.Height
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Include/
EfiHii.h 132 EFI_HII_GLYPH_INFO Cell;
156 EFI_HII_GLYPH_INFO Cell;
188 EFI_HII_GLYPH_INFO Cell;
189 UINT8 BitmapData[1]; // the number of bytes per bitmap can be calculated by ((Cell.Width+7)/8)*Cell.Height
194 EFI_HII_GLYPH_INFO Cell;
196 UINT8 BitmapData[1]; // the number of bytes per bitmap can be calculated by ((Cell.Width+7)/8)*Cell.Height
201 UINT8 BitmapData[1]; // the number of bytes per bitmap can be calculated by ((Global.Cell.Width+7)/8)*Global.Cell.Height
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Uefi/
UefiInternalFormRepresentation.h 199 EFI_HII_GLYPH_INFO Cell;
230 EFI_HII_GLYPH_INFO Cell;
262 EFI_HII_GLYPH_INFO Cell;
268 EFI_HII_GLYPH_INFO Cell;
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/efi/Uefi/
UefiInternalFormRepresentation.h 154 EFI_HII_GLYPH_INFO Cell;
185 EFI_HII_GLYPH_INFO Cell;
217 EFI_HII_GLYPH_INFO Cell;
223 EFI_HII_GLYPH_INFO Cell;
    [all...]

Completed in 675 milliseconds

1 2 3 4 5