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

1 2

  /external/clang/test/SemaTemplate/
instantiate-using-decl.cpp 93 template<class CELL> struct X : public A<CELL>, public B<CELL> {
94 using A<CELL>::access;
95 using B<CELL>::access;
  /frameworks/base/location/lib/java/com/android/location/provider/
GmsFusedBatchOptions.java 87 public static int CELL = 1<<3;
  /external/opencv/cvaux/src/
cvdpstereo.cpp 105 #define CELL(d,x) cells[(d)+(x)*dispH]
180 CELL(0,x).sum = CELL(dispH-1,x).sum = ICV_MAX_DP_SUM_VAL;
181 CELL(0,x).step = CELL(dispH-1,x).step = ICV_DP_STEP_LEFT;
185 CELL(d,d-2).sum = ICV_MAX_DP_SUM_VAL;
186 CELL(d,d-2).step = ICV_DP_STEP_UP;
188 CELL(1,0).sum = 0;
189 CELL(1,0).step = ICV_DP_STEP_LEFT;
275 if( min_val > CELL(i,imgW-1).sum
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatterySipper.java 53 CELL,
BatteryStatsHelper.java 706 Log.d(TAG, "Cell strength #" + i + ": time=" + strengthTimeMs + " power="
721 Log.d(TAG, "Cell radio scanning: time=" + scanningTimeMs + " power=" + makemAh(p));
731 addEntry(BatterySipper.DrainType.CELL, signalTimeMs, power);
    [all...]
  /frameworks/base/location/java/android/location/
FusedBatchOptions.java 93 public static int CELL = 1<<3;
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
symtable.h 84 #define CELL 5
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
symtable.h 84 #define CELL 5
  /external/chromium_org/v8/src/mips/
assembler-mips-inl.h 244 Handle<Cell> RelocInfo::target_cell_handle() {
245 ASSERT(rmode_ == RelocInfo::CELL);
247 return Handle<Cell>(reinterpret_cast<Cell**>(address));
251 Cell* RelocInfo::target_cell() {
252 ASSERT(rmode_ == RelocInfo::CELL);
253 return Cell::FromValueAddress(Memory::Address_at(pc_));
257 void RelocInfo::set_target_cell(Cell* cell,
260 ASSERT(rmode_ == RelocInfo::CELL);
267 host(), NULL, cell); local
    [all...]
  /external/chromium_org/v8/src/
lithium-codegen.cc 171 ZoneList<Handle<Cell> > cells(1, zone());
173 RelocInfo::ModeMask(RelocInfo::CELL);
176 if (mode == RelocInfo::CELL &&
178 Handle<Cell> cell(it.rinfo()->target_cell());
179 cells.Add(cell, zone());
189 Handle<Cell> cell(Cell::cast(it.rinfo()->target_object()));
190 cells.Add(cell, zone())
    [all...]
objects-visiting-inl.h 208 Cell::BodyDescriptor,
255 ASSERT(rinfo->rmode() == RelocInfo::CELL);
256 Cell* cell = rinfo->target_cell(); local
257 // No need to record slots because the cell space is not compacted during GC.
258 if (!rinfo->host()->IsWeakObject(cell)) {
259 StaticVisitor::MarkObject(heap, cell);
358 // Mark property cell dependent codes array but do not push it onto marking
    [all...]
assembler.cc 759 RelocInfo::ModeMask(RelocInfo::CELL) |
784 case RelocInfo::CELL:
785 return "property cell";
859 case CELL:
    [all...]
assembler.h 334 CELL,
363 LAST_GCED_ENUM = CELL,
495 INLINE(Cell* target_cell());
496 INLINE(Handle<Cell> target_cell_handle());
497 INLINE(void set_target_cell(Cell* cell,
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm-inl.h 210 Handle<Cell> RelocInfo::target_cell_handle() {
211 ASSERT(rmode_ == RelocInfo::CELL);
213 return Handle<Cell>(reinterpret_cast<Cell**>(address));
217 Cell* RelocInfo::target_cell() {
218 ASSERT(rmode_ == RelocInfo::CELL);
219 return Cell::FromValueAddress(Memory::Address_at(pc_));
223 void RelocInfo::set_target_cell(Cell* cell,
226 ASSERT(rmode_ == RelocInfo::CELL);
233 host(), NULL, cell); local
    [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32-inl.h 180 Handle<Cell> RelocInfo::target_cell_handle() {
181 ASSERT(rmode_ == RelocInfo::CELL);
183 return Handle<Cell>(reinterpret_cast<Cell**>(address));
187 Cell* RelocInfo::target_cell() {
188 ASSERT(rmode_ == RelocInfo::CELL);
189 return Cell::FromValueAddress(Memory::Address_at(pc_));
193 void RelocInfo::set_target_cell(Cell* cell,
196 ASSERT(rmode_ == RelocInfo::CELL);
206 host(), NULL, cell); local
    [all...]
assembler-ia32.h 361 static Operand ForCell(Handle<Cell> cell) {
363 return Operand(reinterpret_cast<int32_t>(cell.location()),
364 RelocInfo::CELL);
    [all...]
  /external/chromium_org/v8/src/x64/
assembler-x64-inl.h 340 Handle<Cell> RelocInfo::target_cell_handle() {
341 ASSERT(rmode_ == RelocInfo::CELL);
343 return Handle<Cell>(reinterpret_cast<Cell**>(address));
347 Cell* RelocInfo::target_cell() {
348 ASSERT(rmode_ == RelocInfo::CELL);
349 return Cell::FromValueAddress(Memory::Address_at(pc_));
353 void RelocInfo::set_target_cell(Cell* cell,
356 ASSERT(rmode_ == RelocInfo::CELL);
367 host(), NULL, cell); local
    [all...]
  /external/chromium_org/v8/src/x87/
assembler-x87-inl.h 181 Handle<Cell> RelocInfo::target_cell_handle() {
182 ASSERT(rmode_ == RelocInfo::CELL);
184 return Handle<Cell>(reinterpret_cast<Cell**>(address));
188 Cell* RelocInfo::target_cell() {
189 ASSERT(rmode_ == RelocInfo::CELL);
190 return Cell::FromValueAddress(Memory::Address_at(pc_));
194 void RelocInfo::set_target_cell(Cell* cell,
197 ASSERT(rmode_ == RelocInfo::CELL);
207 host(), NULL, cell); local
    [all...]
assembler-x87.h 350 static Operand ForCell(Handle<Cell> cell) {
352 return Operand(reinterpret_cast<int32_t>(cell.location()),
353 RelocInfo::CELL);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symtable.py 6 SCOPE_OFF, SCOPE_MASK, FREE, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL, LOCAL)
140 locs = (LOCAL, CELL)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
symtable.py 6 SCOPE_OFF, SCOPE_MASK, FREE, GLOBAL_IMPLICIT, GLOBAL_EXPLICIT, CELL, LOCAL)
140 locs = (LOCAL, CELL)
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryEntry.java 139 case CELL:
PowerUsageDetail.java 163 case CELL:
590 case CELL:
  /external/chromium_org/v8/src/arm64/
assembler-arm64-inl.h 750 Handle<Cell> RelocInfo::target_cell_handle() {
752 Cell *null_cell = NULL;
753 return Handle<Cell>(null_cell);
757 Cell* RelocInfo::target_cell() {
758 ASSERT(rmode_ == RelocInfo::CELL);
759 return Cell::FromValueAddress(Memory::Address_at(pc_));
763 void RelocInfo::set_target_cell(Cell* cell,
853 } else if (mode == RelocInfo::CELL) {
876 } else if (mode == RelocInfo::CELL) {
    [all...]
  /external/qemu/disas/
ppc.c 166 /* Opcode is only supported by PowerPC Cell family. */
    [all...]

Completed in 6453 milliseconds

1 2