Home
last modified time | relevance | path

Searched refs:width (Results 1 – 22 of 22) sorted by relevance

/art/test/079-phantom/src/
DBitmap.java36 Bitmap(String name, int width, int height, Bitmap.NativeWrapper nativeData) { in Bitmap() argument
38 mWidth = width; in Bitmap()
68 static Bitmap.NativeWrapper allocNativeStorage(int width, int height) { in allocNativeStorage() argument
/art/test/131-structural-change/
Dbuild27 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes
29 …${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 clas…
/art/test/122-secondarydex/
Dbuild27 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes
29 …${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 clas…
/art/compiler/llvm/
Druntime_support_builder_arm.cc42 int width = type->isPointerTy() ? in LDRSTRSuffixByType() local
45 switch (width) { in LDRSTRSuffixByType()
50 LOG(FATAL) << "Unsupported width: " << width; in LDRSTRSuffixByType()
/art/test/etc/
Ddefault-build28 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes
36 …${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes-ex.dex --dump-width=1000 c…
/art/runtime/jdwp/
Djdwp_request.cc65 uint64_t Request::ReadValue(size_t width) { in ReadValue() argument
67 switch (width) { in ReadValue()
72 default: LOG(FATAL) << width; break; in ReadValue()
Djdwp_handler.cc55 static void WriteValue(ExpandBuf* pReply, int width, uint64_t value) { in WriteValue() argument
56 switch (width) { in WriteValue()
61 default: LOG(FATAL) << width; break; in WriteValue()
113 size_t width = Dbg::GetTagWidth(argTypes[i]); in FinishInvoke() local
114 argValues[i] = request.ReadValue(width); in FinishInvoke()
115 VLOG(jdwp) << " " << argTypes[i] << StringPrintf("(%zd): %#" PRIx64, width, in FinishInvoke()
140 size_t width = Dbg::GetTagWidth(resultTag); in FinishInvoke() local
142 if (width != 0) { in FinishInvoke()
143 WriteValue(pReply, width, resultValue); in FinishInvoke()
669 size_t width = Dbg::GetTagWidth(fieldTag); in CT_SetValues() local
[all …]
Djdwp.h398 uint64_t ReadValue(size_t width);
/art/compiler/dex/quick/arm64/
Dtarget_arm64.cc253 static uint64_t RotateRight(uint64_t value, unsigned rotate, unsigned width) { in RotateRight() argument
254 DCHECK_LE(width, 64U); in RotateRight()
256 value = value & BIT_MASK(width); in RotateRight()
257 return ((value & BIT_MASK(rotate)) << (width - rotate)) | (value >> rotate); in RotateRight()
260 static uint64_t RepeatBitsAcrossReg(bool is_wide, uint64_t value, unsigned width) { in RepeatBitsAcrossReg() argument
263 uint64_t result = value & BIT_MASK(width); in RepeatBitsAcrossReg()
264 for (i = width; i < reg_size; i *= 2) { in RepeatBitsAcrossReg()
306 for (unsigned width = 0x20; width >= 0x2; width >>= 1) { in DecodeLogicalImmediate() local
307 if ((imm_s & width) == 0) { in DecodeLogicalImmediate()
308 unsigned mask = (unsigned)(width - 1); in DecodeLogicalImmediate()
[all …]
Dutility_arm64.cc221 unsigned width = (is_wide) ? 64 : 32; in EncodeLogicalImmediate() local
227 if (width == 2) { in EncodeLogicalImmediate()
234 n = (width == 64) ? 1 : 0; in EncodeLogicalImmediate()
236 if ((lead_zero + set_bits) == width) { in EncodeLogicalImmediate()
239 imm_r = (lead_zero > 0) ? (width - trail_zero) : lead_one; in EncodeLogicalImmediate()
244 if (lead_zero + trail_zero + set_bits == width) { in EncodeLogicalImmediate()
250 if (lead_one + trail_one + (width - set_bits) == width) { in EncodeLogicalImmediate()
257 uint64_t mask = (UINT64_C(1) << (width >> 1)) - 1; in EncodeLogicalImmediate()
258 if ((value & mask) == ((value >> (width >> 1)) & mask)) { in EncodeLogicalImmediate()
259 width >>= 1; in EncodeLogicalImmediate()
Dcall_arm64.cc166 uint16_t width = tab_rec->table[1]; in GenFillArrayData() local
168 tab_rec->size = (size * width) + 8; in GenFillArrayData()
/art/test/085-old-style-inner-class/
Dbuild26 ${DX} --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes 2>/dev/null
/art/compiler/dex/
Dmir_graph.cc400 int width, int flags, const uint16_t* code_ptr, in ProcessCanBranch() argument
438 BasicBlock* fallthrough_block = FindBlock(cur_offset + width, in ProcessCanBranch()
459 FindBlock(cur_offset + width, /* split */ false, /* create */ true, in ProcessCanBranch()
467 int width, int flags) { in ProcessCanSwitch() argument
534 BasicBlock* fallthrough_block = FindBlock(cur_offset + width, /* split */ false, in ProcessCanSwitch()
543 int width, int flags, ArenaBitVector* try_block_addr, in ProcessCanThrow() argument
598 FindBlock(cur_offset + width, /* split */ false, /* create */ true, in ProcessCanThrow()
727 int width = ParseInsn(code_ptr, &insn->dalvikInsn); in InlineMethod() local
750 if ((width == 1) && ((current_offset_ & 0x1) == 0x1) && ((code_end - code_ptr) > 1)) { in InlineMethod()
756 width += Instruction::At(code_ptr + 1)->SizeInCodeUnits(); in InlineMethod()
[all …]
Dmir_graph.h1100 BasicBlock* ProcessCanBranch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width,
1102 BasicBlock* ProcessCanSwitch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width,
1104 BasicBlock* ProcessCanThrow(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width,
/art/runtime/
Ddebugger.cc1319 size_t width = GetTagWidth(element_tag); in OutputArray() local
1320 uint8_t* dst = expandBufAddSpace(pReply, count * width); in OutputArray()
1321 if (width == 8) { in OutputArray()
1324 } else if (width == 4) { in OutputArray()
1327 } else if (width == 2) { in OutputArray()
1332 memcpy(dst, &src[offset * width], count * width); in OutputArray()
1377 size_t width = GetTagWidth(element_tag); in SetArrayElements() local
1378 if (width == 8) { in SetArrayElements()
1380 } else if (width == 4) { in SetArrayElements()
1382 } else if (width == 2) { in SetArrayElements()
[all …]
Ddebugger.h401 uint64_t value, int width)
406 static JDWP::JdwpError SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width)
653 JDWP::JdwpTag tag, uint8_t* buf, size_t width)
657 uint64_t value, size_t width)
Ddex_file.cc1148 size_t width = value_arg + 1; // assume and correct later in Next() local
1153 width = 0; in Next()
1192 width = 0; in Next()
1197 ptr_ += width; in Next()
/art/compiler/dex/quick/x86/
Dcall_x86.cc144 uint16_t width = tab_rec->table[1]; in GenFillArrayData() local
146 tab_rec->size = (size * width) + 8; in GenFillArrayData()
/art/compiler/dex/quick/mips/
Dcall_mips.cc231 uint16_t width = tab_rec->table[1]; in GenFillArrayData() local
233 tab_rec->size = (size * width) + 8; in GenFillArrayData()
/art/compiler/dex/quick/arm/
Dcall_arm.cc157 uint16_t width = tab_rec->table[1]; in GenFillArrayData() local
159 tab_rec->size = (size * width) + 8; in GenFillArrayData()
/art/disassembler/
Ddisassembler_arm.cc1134 uint32_t width = msb - lsb + 1; in DumpThumb32() local
1137 args << Rd << ", " << Rn << ", #" << lsb << ", #" << width; in DumpThumb32()
1140 args << Rd << ", #" << lsb << ", #" << width; in DumpThumb32()
/art/tools/
Dcpplint.py2791 width = 0
2794 width += 2
2796 width += 1
2797 return width