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

/art/runtime/
H A Datomic_integer.h27 AtomicInteger() : value_(0) { }
29 explicit AtomicInteger(int32_t value) : value_(value) { }
33 value_ = desired;
42 return value_;
50 return android_atomic_add(value, &value_);
54 return android_atomic_add(-value, &value_);
58 return android_atomic_inc(&value_) + 1;
62 return android_atomic_inc(&value_);
66 return android_atomic_dec(&value_) - 1;
70 return android_atomic_dec(&value_);
78 volatile int32_t value_; member in class:art::AtomicInteger
[all...]
H A Ddebugger.cc2161 frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width) {}
2177 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2182 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2186 SetVReg(m, reg, static_cast<uint32_t>(value_), kIntVReg);
2190 SetVReg(m, reg, static_cast<uint32_t>(value_), kFloatVReg);
2197 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value_));
2206 SetVReg(m, reg, static_cast<uint32_t>(value_), kDoubleLoVReg);
2207 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32), kDoubleHiVReg);
2211 SetVReg(m, reg, static_cast<uint32_t>(value_), kLongLoVReg);
2212 SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 3
2224 const uint64_t value_; member in struct:art::SetLocalVisitor
[all...]
/art/compiler/utils/
H A Dscoped_hashtable_test.cc26 explicit Value(int v):value_(v) {}
27 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/runtime/base/
H A Dlogging.h237 explicit Dumpable(T& value) : value_(value) {
241 value_.Dump(os);
245 T& value_; member in class:art::Dumpable
260 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : value_(value) {
264 value_.Dump(os);
268 T& value_; member in class:art::MutatorLockedDumpable
/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/
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 209 milliseconds