Searched refs:width (Results 1 - 25 of 26) sorted by relevance

12

/art/test/004-ReferenceMap/
H A Dbuild25 --dump-width=1000 ${DX_FLAGS} classes
/art/test/004-StackWalk/
H A Dbuild25 --dump-width=1000 ${DX_FLAGS} classes
/art/test/454-get-vreg/
H A Dbuild25 --dump-width=1000 ${DX_FLAGS} classes
/art/test/131-structural-change/
H A Dbuild34 ${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.dex --dump-width=1000 classes-ex
/art/test/138-duplicate-classes-check2/
H A Dbuild28 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes
30 ${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 classes-ex
/art/test/079-phantom/src/
H A DBitmap.java36 Bitmap(String name, int width, int height, Bitmap.NativeWrapper nativeData) { argument
38 mWidth = width;
68 static Bitmap.NativeWrapper allocNativeStorage(int width, int height) { argument
/art/test/127-secondarydex/
H A Dbuild38 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes
40 ${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 classes-ex
/art/test/085-old-style-inner-class/
H A Dbuild30 ${DX} --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes 2>/dev/null
/art/test/etc/
H A Ddefault-build74 --dump-width=1000 ${DX_FLAGS} classes2
85 --dump-width=1000 ${DX_FLAGS} classes
109 --dump-width=1000 ${DX_FLAGS} classes-ex
/art/runtime/jdwp/
H A Djdwp_request.cc64 // Helper function: read a variable-width value from the input buffer.
65 uint64_t Request::ReadValue(size_t width) { argument
67 switch (width) {
72 default: LOG(FATAL) << width; break;
H A Djdwp_handler.cc103 size_t width = Dbg::GetTagWidth(argTypes[i]); local
104 argValues[i] = request->ReadValue(width);
105 VLOG(jdwp) << " " << argTypes[i] << StringPrintf("(%zd): %#" PRIx64, width,
623 size_t width = Dbg::GetTagWidth(fieldTag); local
624 uint64_t value = request->ReadValue(width);
627 JdwpError status = Dbg::SetStaticFieldValue(fieldId, value, width);
793 size_t width = Dbg::GetTagWidth(fieldTag); local
794 uint64_t value = request->ReadValue(width);
796 VLOG(jdwp) << " --> fieldId=" << fieldId << " tag=" << fieldTag << "(" << width << ") value=" << value;
797 JdwpError status = Dbg::SetFieldValue(object_id, fieldId, value, width);
[all...]
H A Djdwp.h429 // Helper function: read a variable-width value from the input buffer.
430 uint64_t ReadValue(size_t width);
/art/compiler/dex/quick/arm64/
H A Dtarget_arm64.cc253 static uint64_t bit_mask(unsigned width) { argument
254 DCHECK_LE(width, 64U);
255 return (width == 64) ? static_cast<uint64_t>(-1) : ((UINT64_C(1) << (width)) - UINT64_C(1));
258 static uint64_t RotateRight(uint64_t value, unsigned rotate, unsigned width) { argument
259 DCHECK_LE(width, 64U);
261 value = value & bit_mask(width);
262 return ((value & bit_mask(rotate)) << (width - rotate)) | (value >> rotate);
265 static uint64_t RepeatBitsAcrossReg(bool is_wide, uint64_t value, unsigned width) { argument
268 uint64_t result = value & bit_mask(width);
[all...]
H A Dutility_arm64.cc201 // 32 or 64-bit value, depending on destination register width.
220 // If width == 64 (X reg), start at 0xFFFFFF80.
221 // If width == 32 (W reg), start at 0xFFFFFFC0, as the iteration for 64-bit
223 unsigned width = (is_wide) ? 64 : 32; local
229 if (width == 2) {
236 n = (width == 64) ? 1 : 0;
238 if ((lead_zero + set_bits) == width) {
241 imm_r = (lead_zero > 0) ? (width - trail_zero) : lead_one;
245 // equal to the bit width of the value, it can be encoded.
246 if (lead_zero + trail_zero + set_bits == width) {
[all...]
/art/runtime/
H A Ddebugger.cc1247 size_t width = GetTagWidth(element_tag); local
1248 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1249 if (width == 8) {
1252 } else if (width == 4) {
1255 } else if (width == 2) {
1260 memcpy(dst, &src[offset * width], count * width);
1304 size_t width = GetTagWidth(element_tag); local
1305 if (width == 8) {
1307 } else if (width
1966 SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value, int width) argument
1971 SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) argument
2593 size_t width = Dbg::GetTagWidth(reqSigByte); local
2619 GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) argument
2760 size_t width = Dbg::GetTagWidth(sigByte); local
2782 SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag, uint64_t value, size_t width) argument
4008 WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) argument
4141 size_t width = GetTagWidth(result_tag); local
[all...]
H A Ddebugger.h423 uint64_t value, int width)
428 static JDWP::JdwpError SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width)
750 JDWP::JdwpTag tag, uint8_t* buf, size_t width)
754 uint64_t value, size_t width)
H A Ddex_file.cc1210 size_t width = value_arg + 1; // assume and correct later local
1215 width = 0;
1254 width = 0;
1260 ptr_ += width;
/art/compiler/dex/
H A Dmir_graph.cc456 int width, int flags, const uint16_t* code_ptr,
497 BasicBlock* fallthrough_block = FindBlock(cur_offset + width,
507 FindBlock(cur_offset + width, /* create */ true, /* immed_pred_block_p */ nullptr, dex_pc_to_block_map);
514 int width, int flags,
585 BasicBlock* fallthrough_block = FindBlock(cur_offset + width, /* create */ true,
596 int width, int flags, ArenaBitVector* try_block_addr,
651 FindBlock(cur_offset + width, /* create */ true, /* immed_pred_block_p */ nullptr, dex_pc_to_block_map);
766 int width = ParseInsn(code_ptr, &insn->dalvikInsn); local
788 // A simple NOP will have a width of 1 at this point, embedded data NOP > 1.
789 if ((width
455 ProcessCanBranch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width, int flags, const uint16_t* code_ptr, const uint16_t* code_end, ScopedArenaVector<uint16_t>* dex_pc_to_block_map) argument
513 ProcessCanSwitch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width, int flags, ScopedArenaVector<uint16_t>* dex_pc_to_block_map) argument
595 ProcessCanThrow(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width, int flags, ArenaBitVector* try_block_addr, const uint16_t* code_ptr, const uint16_t* code_end, ScopedArenaVector<uint16_t>* dex_pc_to_block_map) argument
[all...]
H A Dmir_graph.h1295 BasicBlock* ProcessCanBranch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width,
1298 BasicBlock* ProcessCanSwitch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width,
1301 BasicBlock* ProcessCanThrow(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width,
/art/compiler/utils/arm/
H A Dassembler_arm32.cc242 void Arm32Assembler::sbfx(Register rd, Register rn, uint32_t lsb, uint32_t width, Condition cond) { argument
247 CHECK(1U <= width && width <= 32U) << width;
248 uint32_t widthminus1 = width - 1;
261 void Arm32Assembler::ubfx(Register rd, Register rn, uint32_t lsb, uint32_t width, Condition cond) { argument
266 CHECK(1U <= width && width <= 32U) << width;
267 uint32_t widthminus1 = width
[all...]
H A Dassembler_thumb2.cc293 void Thumb2Assembler::sbfx(Register rd, Register rn, uint32_t lsb, uint32_t width, Condition cond) { argument
296 CHECK(1U <= width && width <= 32U) << width;
297 uint32_t widthminus1 = width - 1;
314 void Thumb2Assembler::ubfx(Register rd, Register rn, uint32_t lsb, uint32_t width, Condition cond) { argument
317 CHECK(1U <= width && width <= 32U) << width;
318 uint32_t widthminus1 = width
[all...]
H A Dassembler_arm32.h99 void sbfx(Register rd, Register rn, uint32_t lsb, uint32_t width, Condition cond = AL) OVERRIDE;
100 void ubfx(Register rd, Register rn, uint32_t lsb, uint32_t width, Condition cond = AL) OVERRIDE;
H A Dassembler_thumb2.h121 void sbfx(Register rd, Register rn, uint32_t lsb, uint32_t width, Condition cond = AL) OVERRIDE;
122 void ubfx(Register rd, Register rn, uint32_t lsb, uint32_t width, Condition cond = AL) OVERRIDE;
/art/disassembler/
H A Ddisassembler_arm.cc1156 // BFI Rd, Rn, #lsb, #width - 111 10 0 11 011 0 nnnn 0 iii dddd ii 0 iiiii
1163 uint32_t width = msb - lsb + 1; local
1166 args << Rd << ", " << Rn << ", #" << lsb << ", #" << width; local
1169 args << Rd << ", #" << lsb << ", #" << width; local
/art/tools/
H A Dcpplint.py2781 """Determines the width of the line in column positions.
2787 The width of the line in column positions, accounting for Unicode
2791 width = 0
2794 width += 2
2796 width += 1
2797 return width

Completed in 511 milliseconds

12