Searched defs:width (Results 1 - 14 of 14) sorted by relevance

/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
1399 size_t width = Dbg::GetTagWidth(reqSigByte); local
1422 size_t width = Dbg::GetTagWidth(sigByte); local
[all...]
/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/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/compiler/dex/quick/arm64/
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;
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...]
/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/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...]
/art/runtime/
H A Ddex_file.cc1141 size_t width = value_arg + 1; // assume and correct later local
1146 width = 0;
1185 width = 0;
1190 ptr_ += width;
H A Ddebugger.cc1307 size_t width = GetTagWidth(element_tag); local
1308 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1309 if (width == 8) {
1312 } else if (width == 4) {
1315 } else if (width == 2) {
1320 memcpy(dst, &src[offset * width], count * width);
1365 size_t width = GetTagWidth(element_tag); local
1366 if (width == 8) {
1368 } else if (width
1912 SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value, int width) argument
1917 SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) argument
2463 GetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) argument
2629 SetLocalValue(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value, size_t width) argument
[all...]

Completed in 1542 milliseconds