• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:width

1319     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()
1864 uint64_t value, int width, bool is_static) in SetFieldValueImpl() argument
1891 CHECK_EQ(width, 8); in SetFieldValueImpl()
1895 CHECK_LE(width, 4); in SetFieldValueImpl()
1925 int width) { in SetFieldValue() argument
1926 return SetFieldValueImpl(object_id, field_id, value, width, false); in SetFieldValue()
1929 JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) { in SetStaticFieldValue() argument
1930 return SetFieldValueImpl(0, field_id, value, width, true); in SetStaticFieldValue()
2538 size_t width = Dbg::GetTagWidth(reqSigByte); in GetLocalValues() local
2539 uint8_t* ptr = expandBufAddSpace(pReply, width+1); in GetLocalValues()
2540 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width); in GetLocalValues()
2549 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) { in GetLocalValue() argument
2557 CHECK_EQ(width, 1U); in GetLocalValue()
2569 CHECK_EQ(width, 1U); in GetLocalValue()
2582 CHECK_EQ(width, 2U); in GetLocalValue()
2594 CHECK_EQ(width, 4U); in GetLocalValue()
2606 CHECK_EQ(width, 4U); in GetLocalValue()
2624 CHECK_EQ(width, sizeof(JDWP::ObjectId)); in GetLocalValue()
2641 CHECK_EQ(width, 8U); in GetLocalValue()
2653 CHECK_EQ(width, 8U); in GetLocalValue()
2700 size_t width = Dbg::GetTagWidth(sigByte); in SetLocalValues() local
2701 uint64_t value = request->ReadValue(width); in SetLocalValues()
2704 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width); in SetLocalValues()
2713 uint64_t value, size_t width) { in SetLocalValue() argument
2722 CHECK_EQ(width, 1U); in SetLocalValue()
2731 CHECK_EQ(width, 2U); in SetLocalValue()
2739 CHECK_EQ(width, 4U); in SetLocalValue()
2747 CHECK_EQ(width, 4U); in SetLocalValue()
2761 CHECK_EQ(width, sizeof(JDWP::ObjectId)); in SetLocalValue()
2774 CHECK_EQ(width, 8U); in SetLocalValue()
2782 CHECK_EQ(width, 8U); in SetLocalValue()