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

/art/test/122-secondarydex/
H A 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 classes-ex
/art/test/131-structural-change/
H A 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 classes-ex
/art/test/085-old-style-inner-class/
H A Dbuild26 ${DX} --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes 2>/dev/null
/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/etc/
H A 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 classes-ex
/art/compiler/llvm/
H A Druntime_support_builder_arm.cc42 int width = type->isPointerTy() ? local
45 switch (width) {
50 LOG(FATAL) << "Unsupported width: " << width;
/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.cc54 // Helper function: write a variable-width value into the output input buffer.
55 static void WriteValue(ExpandBuf* pReply, int width, uint64_t value) { argument
56 switch (width) {
61 default: LOG(FATAL) << width; break;
113 size_t width = Dbg::GetTagWidth(argTypes[i]); local
114 argValues[i] = request.ReadValue(width);
115 VLOG(jdwp) << " " << argTypes[i] << StringPrintf("(%zd): %#" PRIx64, width,
140 size_t width = Dbg::GetTagWidth(resultTag); local
142 if (width != 0) {
143 WriteValue(pReply, width, resultValu
669 size_t width = Dbg::GetTagWidth(fieldTag); local
843 size_t width = Dbg::GetTagWidth(fieldTag); local
[all...]
H A Djdwp.h397 // Helper function: read a variable-width value from the input buffer.
398 uint64_t ReadValue(size_t width);
/art/compiler/dex/quick/arm64/
H A Dtarget_arm64.cc253 static uint64_t RotateRight(uint64_t value, unsigned rotate, unsigned width) { argument
254 DCHECK_LE(width, 64U);
256 value = value & BIT_MASK(width);
257 return ((value & BIT_MASK(rotate)) << (width - rotate)) | (value >> rotate);
260 static uint64_t RepeatBitsAcrossReg(bool is_wide, uint64_t value, unsigned width) { argument
263 uint64_t result = value & BIT_MASK(width);
264 for (i = width; i < reg_size; i *= 2) {
298 // 32 or 64-bit value, depending on destination register width.
306 for (unsigned width = 0x20; width >
[all...]
H A Dutility_arm64.cc199 // 32 or 64-bit value, depending on destination register width.
218 // If width == 64 (X reg), start at 0xFFFFFF80.
219 // If width == 32 (W reg), start at 0xFFFFFFC0, as the iteration for 64-bit
221 unsigned width = (is_wide) ? 64 : 32; local
227 if (width == 2) {
234 n = (width == 64) ? 1 : 0;
236 if ((lead_zero + set_bits) == width) {
239 imm_r = (lead_zero > 0) ? (width - trail_zero) : lead_one;
243 // equal to the bit width of the value, it can be encoded.
244 if (lead_zero + trail_zero + set_bits == width) {
[all...]
H A Dcall_arm64.cc152 * ushort width width of each element in the table
154 * ubyte data[size*width] table of data values (may contain a single-byte
157 * Total size is 4+(width * size + 1)/2 16-bit code units.
166 uint16_t width = tab_rec->table[1]; local
168 tab_rec->size = (size * width) + 8;
/art/runtime/
H A Ddebugger.cc1319 size_t width = GetTagWidth(element_tag); local
1320 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1321 if (width == 8) {
1324 } else if (width == 4) {
1327 } else if (width == 2) {
1332 memcpy(dst, &src[offset * width], count * width);
1377 size_t width = GetTagWidth(element_tag); local
1378 if (width == 8) {
1380 } else if (width
1924 SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value, int width) argument
1929 SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) argument
2538 size_t width = Dbg::GetTagWidth(reqSigByte); local
2548 GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) argument
2700 size_t width = Dbg::GetTagWidth(sigByte); local
2712 SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag, uint64_t value, size_t width) argument
[all...]
H A 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)
H A Ddex_file.cc1148 size_t width = value_arg + 1; // assume and correct later local
1153 width = 0;
1192 width = 0;
1197 ptr_ += width;
/art/compiler/dex/
H A Dmir_graph.cc400 int width, int flags, const uint16_t* code_ptr,
438 BasicBlock* fallthrough_block = FindBlock(cur_offset + width,
459 FindBlock(cur_offset + width, /* split */ false, /* create */ true,
467 int width, int flags) {
534 BasicBlock* fallthrough_block = FindBlock(cur_offset + width, /* split */ false,
543 int width, int flags, ArenaBitVector* try_block_addr,
598 FindBlock(cur_offset + width, /* split */ false, /* create */ true,
727 int width = ParseInsn(code_ptr, &insn->dalvikInsn); local
749 // A simple NOP will have a width of 1 at this point, embedded data NOP > 1.
750 if ((width
399 ProcessCanBranch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width, int flags, const uint16_t* code_ptr, const uint16_t* code_end) argument
466 ProcessCanSwitch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width, int flags) argument
542 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) argument
[all...]
H A 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/compiler/dex/quick/mips/
H A Dcall_mips.cc216 * ushort width width of each element in the table
218 * ubyte data[size*width] table of data values (may contain a single-byte
221 * Total size is 4+(width * size + 1)/2 16-bit code units.
231 uint16_t width = tab_rec->table[1]; local
233 tab_rec->size = (size * width) + 8;
/art/compiler/dex/quick/x86/
H A Dcall_x86.cc130 * ushort width width of each element in the table
132 * ubyte data[size*width] table of data values (may contain a single-byte
135 * Total size is 4+(width * size + 1)/2 16-bit code units.
144 uint16_t width = tab_rec->table[1]; local
146 tab_rec->size = (size * width) + 8;
/art/compiler/dex/quick/arm/
H A Dcall_arm.cc143 * ushort width width of each element in the table
145 * ubyte data[size*width] table of data values (may contain a single-byte
148 * Total size is 4+(width * size + 1)/2 16-bit code units.
157 uint16_t width = tab_rec->table[1]; local
159 tab_rec->size = (size * width) + 8;
/art/disassembler/
H A Ddisassembler_arm.cc1127 // BFI Rd, Rn, #lsb, #width - 111 10 0 11 011 0 nnnn 0 iii dddd ii 0 iiiii
1134 uint32_t width = msb - lsb + 1; local
1137 args << Rd << ", " << Rn << ", #" << lsb << ", #" << width; local
1140 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 496 milliseconds