Searched defs:Cell (Results 1 - 25 of 34) sorted by relevance

12

/external/v8/tools/
H A Dconsarray.js40 this.tail_ = new ConsArray.Cell(null, null);
56 this.tail_ = this.tail_.next = new ConsArray.Cell(null, null);
89 ConsArray.Cell = function(data, next) {
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLTable.java87 private static class Cell extends IElement.Factory.ElementImpl class in class:HTMLTable
97 Cell (Tag tag) method in class:HTMLTable.Cell
110 final ICell cell = new Cell (m_th ? Tag.TH : Tag.TD);
/external/gemmlowp/internal/
H A Dkernel.h144 typedef tCellFormat Cell; typedef in struct:gemmlowp::KernelSideFormat
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;
166 static const int kCols = Rhs::Cell::kWidth * Rhs::kCells;
/external/guava/guava/src/com/google/common/collect/
H A DTable.java202 Set<Cell<R, C, V>> cellSet();
264 interface Cell<R, C, V> { interface in interface:Table
/external/python/cpython2/Mac/Modules/list/
H A Dlistsupport.py26 Cell = Point variable
126 Cell theCell,
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_addrhashmap.h46 struct Cell { struct in class:__sanitizer::AddrHashMap
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];
244 Cell *c = &b->cells[i];
277 Cell *
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DStriped64.java31 * 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 { class in class:Striped64
101 Cell(long x) { value = x; } method in class:Striped64.Cell
107 private static final AtomicLongFieldUpdater<Cell> valueUpdater =
108 AtomicLongFieldUpdater.newUpdater(Cell.class, "value");
130 transient volatile Cell[] cells;
196 Cell[] as; Cell
[all...]
/external/libchrome/base/trace_event/
H A Dheap_profiler_allocation_register.h58 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;
101 Cell* cell = &cells_[index];
116 Cell* cell = *Lookup(key);
146 return bits::Align(sizeof(Cell) * next_unused_cell_, page_size) +
155 struct Cell { struct
157 Cell* nex
[all...]
/external/toolchain-utils/crosperf/
H A Dresults_report.py15 from cros_utils.tabulator import Cell namespace
155 cell = Cell()
183 cell = Cell()
/external/one-true-awk/
H A Dawk.h76 /* Cell: all information about a variable or constant */
78 typedef struct Cell { struct
85 struct Cell *cnext; /* ptr to next if chained */
86 } Cell; typedef in typeref:struct: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 *rlengthlo
[all...]
/external/toolchain-utils/cros_utils/
H A Dtabulator.py325 tmp_cell = Cell()
707 class Cell(object): class in inherits:object
805 key = Cell()
811 cell = Cell()
837 key = Cell()
843 cell = Cell()
854 key = Cell()
859 cell = Cell()
876 cell = Cell()
913 cell = Cell()
[all...]
/external/gemmlowp/standalone/
H A Dneon-gemm-kernel-benchmark.cc224 typedef tCellFormat Cell; typedef in struct:KernelSideFormat
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;
240 static const int kCols = Rhs::Cell::kWidth * Rhs::kCells;
1243 // Load 1st Lhs Cell
1386 // Load 1st Lhs Cell
[all...]
/external/bzip2/
H A Dbzip2.c1699 Cell; typedef in typeref:struct:zzzz
1716 Cell *mkCell ( void )
1718 Cell *c;
1720 c = (Cell*) myMalloc ( sizeof ( Cell ) );
1729 Cell *snocString ( Cell *root, Char *name )
1732 Cell *tmp = mkCell();
1737 Cell *tmp = root;
1747 void addFlagsFromEnvVar ( Cell** argLis
[all...]
/external/tensorflow/tensorflow/python/framework/
H A Dfunction_test.py1454 cell_func_call_pattern = re.compile(r"Cell[^/]*\(")
1458 def Cell(v): function in function:FunctionInlineControlTest.testFoo
1467 x = Cell(x)
1470 self.assertEqual(noinline, Cell.definition.attr["_noinline"].b)
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp66 llvm::Value *Cell = local
68 Builder.CreateAlignedStore(Value, Cell, CharUnits::One());
/external/v8/src/
H A Dfactory.cc1162 Handle<Cell> Factory::NewCell(Handle<Object> value) {
1167 Cell); local
1170 Handle<Cell> Factory::NewNoClosuresCell(Handle<Object> value) {
1171 Handle<Cell> cell = NewCell(value);
1176 Handle<Cell> Factory::NewOneClosureCell(Handle<Object> value) {
1177 Handle<Cell> cell = NewCell(value);
1182 Handle<Cell> Factory::NewManyClosuresCell(Handle<Object> value) {
1183 Handle<Cell> cell = NewCell(value);
1559 Handle<Cell> vector, PretenureFlag pretenure) {
1589 Handle<Object> context_or_undefined, Handle<Cell> vecto
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp1891 class Cell { class in namespace:TestTemplateAttributeInstantiation
1934 Cell<int> cell;
3540 struct Cell { struct in namespace:TemplateFunctionParamRemapTest
3548 void elr(Cell<T>* c) __attribute__((exclusive_locks_required(c->mu_)));
3554 void Foo::elr(Cell<T>* c1) { }
3557 Cell<int> cell;
3564 void globalELR(Cell<T>* c) __attribute__((exclusive_locks_required(c->mu_)));
3567 void globalELR(Cell<T>* c1) { }
3570 Cell<int> cell;
3577 void globalELR2(Cell<
3872 class Cell { class in namespace:GuardedNonPrimitive_MemberAccess
4230 class Cell { class in namespace:PtGuardedByTest
[all...]
/external/syslinux/gpxe/src/include/gpxe/efi/Uefi/
H A DUefiInternalFormRepresentation.h154 EFI_HII_GLYPH_INFO Cell; member in struct:_EFI_HII_FONT_PACKAGE_HDR
185 EFI_HII_GLYPH_INFO Cell; member in struct:_EFI_HII_GIBT_DEFAULTS_BLOCK
217 EFI_HII_GLYPH_INFO Cell; member in struct:_EFI_HII_GIBT_GLYPH_BLOCK
223 EFI_HII_GLYPH_INFO Cell; member in struct:_EFI_HII_GIBT_GLYPHS_BLOCK
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/annotation-tools/annotation-file-utilities/lib/
H A Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...

Completed in 939 milliseconds

12