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

1 2 3 4 5 6

  /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/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/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 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...]
  /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 198 EFI_HII_GLYPH_INFO Cell;
483 @retval EFI_SUCCESS Cell information is added to the GlyphInfoList.
538 If CharValue = (CHAR16) (-1), collect all default character cell information
547 @param Cell Output cell information of the encoded bitmap.
562 OUT EFI_HII_GLYPH_INFO *Cell, OPTIONAL
620 of the image of the first character cell in the
623 of the image of the first character cell in the
695 of the image of the first character cell in the
698 of the image of the first character cell in the
    [all...]
  /external/one-true-awk/
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...]
  /external/toolchain-utils/cros_utils/
tabulator.py 228 def _Literal(self, cell, values, baseline_values):
229 cell.value = ' '.join([str(v) for v in values])
231 def _ComputeFloat(self, cell, values, baseline_values):
232 self._Literal(cell, values, baseline_values)
234 def _ComputeString(self, cell, values, baseline_values):
235 self._Literal(cell, values, baseline_values)
237 def _InvertIfLowerIsBetter(self, cell):
251 def Compute(self, cell, values, baseline_values):
255 cell: A cell data structure to populate
    [all...]
  /external/gemmlowp/standalone/
neon-gemm-kernel-benchmark.cc 175 // 3 cells, each cell having dimensions (width=3, depth=4), laid out in
202 // a cell (see explanation above).
206 // out in a cell. That is, a CellOrder together with actual dimensions.
224 typedef tCellFormat Cell;
226 static const int kWidth = kCells * Cell::kWidth;
227 static const int kDepth = Cell::kDepth;
237 static_assert(Lhs::Cell::kDepth == Rhs::Cell::kDepth, "");
238 static const int kDepth = Lhs::Cell::kDepth;
239 static const int kRows = Lhs::Cell::kWidth * Lhs::kCells
    [all...]
  /external/tensorflow/tensorflow/python/framework/
function_test.py     [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);
154 * Represents a cell in the 3 X 3 matrix of the unlock pattern view.
156 public static final class Cell {
161 private static final Cell[][] sCells = createCells();
163 private static Cell[][] createCells() {
164 Cell[][] res = new Cell[3][3];
167 res[i][j] = new Cell(i, j);
174 * @param row The row of the cell
700 final Cell cell = checkForNewHit(x, y); local
1089 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 161 EFI_HII_GLYPH_INFO Cell;
186 EFI_HII_GLYPH_INFO Cell;
218 EFI_HII_GLYPH_INFO Cell;
219 UINT8 BitmapData[1]; // the number of bytes per bitmap can be calculated by ((Cell.Width+7)/8)*Cell.Height
224 EFI_HII_GLYPH_INFO Cell;
226 UINT8 BitmapData[1]; // the number of bytes per bitmap can be calculated by ((Cell.Width+7)/8)*Cell.Height
231 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 200 EFI_HII_GLYPH_INFO Cell;
232 EFI_HII_GLYPH_INFO Cell;
264 EFI_HII_GLYPH_INFO Cell;
270 EFI_HII_GLYPH_INFO Cell;
288 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 890 milliseconds

1 2 3 4 5 6