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

1 2 3 4

  /external/clang/test/SemaTemplate/
instantiate-using-decl.cpp 94 template<class CELL> struct X : public A<CELL>, public B<CELL> {
95 using A<CELL>::access;
96 using B<CELL>::access;
  /external/opencv/cvaux/src/
cvdpstereo.cpp 107 #define CELL(d,x) cells[(d)+(x)*dispH]
182 CELL(0,x).sum = CELL(dispH-1,x).sum = ICV_MAX_DP_SUM_VAL;
183 CELL(0,x).step = CELL(dispH-1,x).step = ICV_DP_STEP_LEFT;
187 CELL(d,d-2).sum = ICV_MAX_DP_SUM_VAL;
188 CELL(d,d-2).step = ICV_DP_STEP_UP;
190 CELL(1,0).sum = 0;
191 CELL(1,0).step = ICV_DP_STEP_LEFT;
277 if( min_val > CELL(i,imgW-1).sum
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
symtable.h 84 #define CELL 5
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
symtable.h 84 #define CELL 5
  /external/python/cpython2/Include/
symtable.h 84 #define CELL 5
  /frameworks/base/location/lib/java/com/android/location/provider/
GmsFusedBatchOptions.java 95 public static int CELL = 1<<3;
  /prebuilts/gdb/darwin-x86/include/python2.7/
symtable.h 84 #define CELL 5
  /prebuilts/gdb/linux-x86/include/python2.7/
symtable.h 84 #define CELL 5
  /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
  /toolchain/binutils/binutils-2.25/opcodes/
mt-opc.c 559 /* fbcb $frsr1,#$rbbc,#$ball,#$brc,#$rc1,#$cbrb,#$cell,#$dup,#$ctxdisp */
562 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (RC1), ',', '#', OP (CBRB), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
565 /* mfbcb $frsr1,#$rbbc,$frsr2,#$rc1,#$cbrb,#$cell,#$dup,#$ctxdisp */
568 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', OP (FRSR2), ',', '#', OP (RC1), ',', '#', OP (CBRB), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
571 /* fbcci $frsr1,#$rbbc,#$ball,#$brc,#$fbdisp,#$cell,#$dup,#$ctxdisp */
574 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
577 /* fbrci $frsr1,#$rbbc,#$ball,#$brc,#$fbdisp,#$cell,#$dup,#$ctxdisp */
580 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
583 /* fbcri $frsr1,#$rbbc,#$ball,#$brc,#$fbdisp,#$cell,#$dup,#$ctxdisp */
586 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } }
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageAdvanced.java 67 UsageType.CELL,
235 } else if (drainType == DrainType.CELL) {
236 return UsageType.CELL;
254 || (powerUsageData.usageType == UsageType.CELL
338 return usageType == UsageType.CELL
385 UsageType.CELL,
395 int CELL = 2;
433 case UsageType.CELL:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
symtablemodule.c 82 PyModule_AddIntConstant(m, "CELL", CELL);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
symtablemodule.c 79 PyModule_AddIntConstant(m, "CELL", CELL);
  /external/python/cpython2/Modules/
symtablemodule.c 82 PyModule_AddIntConstant(m, "CELL", CELL);
  /frameworks/base/location/java/android/location/
FusedBatchOptions.java 103 public static int CELL = 1<<3;
  /external/v8/src/mips/
assembler-mips-inl.h 280 Handle<Cell> RelocInfo::target_cell_handle() {
281 DCHECK(rmode_ == RelocInfo::CELL);
283 return Handle<Cell>(reinterpret_cast<Cell**>(address));
287 Cell* RelocInfo::target_cell() {
288 DCHECK(rmode_ == RelocInfo::CELL);
289 return Cell::FromValueAddress(Memory::Address_at(pc_));
293 void RelocInfo::set_target_cell(Cell* cell,
296 DCHECK(rmode_ == RelocInfo::CELL);
301 cell); local
    [all...]
  /external/v8/src/mips64/
assembler-mips64-inl.h 262 Handle<Cell> RelocInfo::target_cell_handle() {
263 DCHECK(rmode_ == RelocInfo::CELL);
265 return Handle<Cell>(reinterpret_cast<Cell**>(address));
269 Cell* RelocInfo::target_cell() {
270 DCHECK(rmode_ == RelocInfo::CELL);
271 return Cell::FromValueAddress(Memory::Address_at(pc_));
275 void RelocInfo::set_target_cell(Cell* cell,
278 DCHECK(rmode_ == RelocInfo::CELL);
283 cell); local
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/
PowerUsageAdvancedTest.java 169 DrainType.USER, DrainType.CELL, DrainType.UNACCOUNTED};
171 UsageType.USER, UsageType.CELL, UsageType.UNACCOUNTED};
264 UsageType.CELL, UsageType.BLUETOOTH, UsageType.IDLE, UsageType.USER,
306 mPowerUsageData.usageType = UsageType.CELL;
315 mPowerUsageData.usageType = UsageType.CELL;
339 mPowerUsageData.usageType = UsageType.CELL;
400 powerUsageDataList.add(new PowerUsageData(UsageType.CELL, normalPower));
  /external/v8/src/arm/
assembler-arm-inl.h 165 Handle<Cell> RelocInfo::target_cell_handle() {
166 DCHECK(rmode_ == RelocInfo::CELL);
168 return Handle<Cell>(reinterpret_cast<Cell**>(address));
172 Cell* RelocInfo::target_cell() {
173 DCHECK(rmode_ == RelocInfo::CELL);
174 return Cell::FromValueAddress(Memory::Address_at(pc_));
178 void RelocInfo::set_target_cell(Cell* cell,
181 DCHECK(rmode_ == RelocInfo::CELL);
186 cell); local
    [all...]
  /external/v8/src/ia32/
assembler-ia32-inl.h 169 Handle<Cell> RelocInfo::target_cell_handle() {
170 DCHECK(rmode_ == RelocInfo::CELL);
172 return Handle<Cell>(reinterpret_cast<Cell**>(address));
176 Cell* RelocInfo::target_cell() {
177 DCHECK(rmode_ == RelocInfo::CELL);
178 return Cell::FromValueAddress(Memory::Address_at(pc_));
182 void RelocInfo::set_target_cell(Cell* cell,
185 DCHECK(cell->IsCell())
194 cell); local
    [all...]
  /external/v8/src/ppc/
assembler-ppc-inl.h 228 Handle<Cell> RelocInfo::target_cell_handle() {
229 DCHECK(rmode_ == RelocInfo::CELL);
231 return Handle<Cell>(reinterpret_cast<Cell**>(address));
235 Cell* RelocInfo::target_cell() {
236 DCHECK(rmode_ == RelocInfo::CELL);
237 return Cell::FromValueAddress(Memory::Address_at(pc_));
241 void RelocInfo::set_target_cell(Cell* cell, WriteBarrierMode write_barrier_mode,
243 DCHECK(rmode_ == RelocInfo::CELL);
248 cell); local
    [all...]
  /external/v8/src/s390/
assembler-s390-inl.h 203 Handle<Cell> RelocInfo::target_cell_handle() {
204 DCHECK(rmode_ == RelocInfo::CELL);
206 return Handle<Cell>(reinterpret_cast<Cell**>(address));
209 Cell* RelocInfo::target_cell() {
210 DCHECK(rmode_ == RelocInfo::CELL);
211 return Cell::FromValueAddress(Memory::Address_at(pc_));
214 void RelocInfo::set_target_cell(Cell* cell, WriteBarrierMode write_barrier_mode,
216 DCHECK(rmode_ == RelocInfo::CELL);
221 cell); local
    [all...]
  /external/v8/src/x87/
assembler-x87-inl.h 169 Handle<Cell> RelocInfo::target_cell_handle() {
170 DCHECK(rmode_ == RelocInfo::CELL);
172 return Handle<Cell>(reinterpret_cast<Cell**>(address));
176 Cell* RelocInfo::target_cell() {
177 DCHECK(rmode_ == RelocInfo::CELL);
178 return Cell::FromValueAddress(Memory::Address_at(pc_));
182 void RelocInfo::set_target_cell(Cell* cell,
185 DCHECK(cell->IsCell())
194 cell); local
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatterySipper.java 117 CELL,

Completed in 570 milliseconds

1 2 3 4