Searched refs:value_ (Results 1 - 11 of 11) sorted by relevance

/art/runtime/
H A Dlock_word-inl.h27 return (value_ >> kThinLockOwnerShift) & kThinLockOwnerMask;
32 return (value_ >> kThinLockCountShift) & kThinLockCountMask;
37 MonitorId mon_id = static_cast<MonitorId>(value_ & ~(kStateMask << kStateShift));
43 return static_cast<size_t>(value_ << kStateSize);
46 inline LockWord::LockWord() : value_(0) {
51 : value_(mon->GetMonitorId() | (kStateFat << kStateShift)) {
57 return (value_ >> kHashShift) & kHashMask;
H A Dlock_word.h110 if (UNLIKELY(value_ == 0)) {
113 uint32_t internal_state = (value_ >> kStateShift) & kStateMask;
154 return value_;
158 explicit LockWord(uint32_t val) : value_(val) {}
164 uint32_t value_; member in class:art::LockWord
H A Dindirect_reference_table.cc35 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : value_(value) {
39 value_.Dump(os);
43 T& value_; member in class:art::MutatorLockedDumpable
/art/compiler/utils/
H A Dscoped_hashtable_test.cc27 explicit Value(int v):value_(v) {}
28 int value_; member in class:art::Value
48 EXPECT_EQ(sht.Lookup(1)->value_, 1);
51 EXPECT_EQ(sht.Lookup(1)->value_, 2);
54 EXPECT_EQ(sht.Lookup(1)->value_, 2);
57 EXPECT_EQ(sht.Lookup(1)->value_, 3);
60 EXPECT_EQ(sht.Lookup(1)->value_, 3);
61 EXPECT_EQ(sht.Lookup(2)->value_, 4);
64 EXPECT_EQ(sht.Lookup(1)->value_, 2);
/art/compiler/optimizing/
H A Dlocations.h55 Location() : value_(kInvalid) {
68 Location(const Location& other) : ValueObject(), value_(other.value_) {}
71 value_ = other.value_;
76 return (value_ & kLocationTagMask) == kConstant;
86 return reinterpret_cast<HConstant*>(value_ & ~kLocationTagMask);
90 return value_ != kInvalid;
176 return KindField::Decode(value_);
180 return value_
[all...]
H A Dnodes.h1102 explicit HIntConstant(int32_t value) : HConstant(Primitive::kPrimInt), value_(value) {}
1104 int32_t GetValue() const { return value_; }
1109 const int32_t value_; member in class:art::HIntConstant
1116 explicit HLongConstant(int64_t value) : HConstant(Primitive::kPrimLong), value_(value) {}
1118 int64_t GetValue() const { return value_; }
1123 const int64_t value_; member in class:art::HLongConstant
/art/runtime/base/
H A Dlogging.h235 explicit Dumpable(T& value) : value_(value) {
239 value_.Dump(os);
243 T& value_; member in class:art::Dumpable
257 explicit ConstDumpable(const T& value) : value_(value) {
261 value_.Dump(os);
265 const T& value_; member in class:art::ConstDumpable
/art/runtime/hprof/
H A Dhprof.cc75 uint16_t value_ = (uint16_t)(value); \
76 buf_[offset_ + 0] = (unsigned char)(value_ >> 8); \
77 buf_[offset_ + 1] = (unsigned char)(value_ ); \
84 uint32_t value_ = (uint32_t)(value); \
85 buf_[offset_ + 0] = (unsigned char)(value_ >> 24); \
86 buf_[offset_ + 1] = (unsigned char)(value_ >> 16); \
87 buf_[offset_ + 2] = (unsigned char)(value_ >> 8); \
88 buf_[offset_ + 3] = (unsigned char)(value_ ); \
95 uint64_t value_ = (uint64_t)(value); \
96 buf_[offset_ + 0] = (unsigned char)(value_ >> 5
[all...]
/art/compiler/sea_ir/ir/
H A Dinstruction_nodes.h127 ConstInstructionNode(inst), value_(value) { }
139 return value_;
143 const int32_t value_; member in class:sea_ir::UnnamedConstInstructionNode
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h41 explicit Immediate(int64_t value) : value_(value) {}
43 int64_t value() const { return value_; }
45 bool is_int8() const { return IsInt(8, value_); }
46 bool is_uint8() const { return IsUint(8, value_); }
47 bool is_uint16() const { return IsUint(16, value_); }
49 // This does not work on 32b machines: return IsInt(32, value_);
51 return (-limit <= value_) && (value_ < limit);
55 const int64_t value_; member in class:art::x86_64::Immediate
/art/compiler/utils/x86/
H A Dassembler_x86.h34 explicit Immediate(int32_t value) : value_(value) {}
36 int32_t value() const { return value_; }
38 bool is_int8() const { return IsInt(8, value_); }
39 bool is_uint8() const { return IsUint(8, value_); }
40 bool is_uint16() const { return IsUint(16, value_); }
43 const int32_t value_; member in class:art::x86::Immediate

Completed in 262 milliseconds