Home
last modified time | relevance | path

Searched refs:val_ (Results 1 – 8 of 8) sorted by relevance

/art/runtime/
Dreflective_reference.h35 ReflectiveReference() : val_(nullptr) {} in ReflectiveReference()
36 explicit ReflectiveReference(ReflectiveType* r) : val_(r) {} in ReflectiveReference()
41 return val_; in Ptr()
45 val_ = r; in Assign()
49 return val_ == nullptr; in IsNull()
53 return val_ == rr.val_;
66 ReflectiveType* val_;
Doffsets.h30 constexpr explicit Offset(size_t val) : val_(val) {} in Offset()
32 return static_cast<int32_t>(val_); in Int32Value()
35 return static_cast<uint32_t>(val_); in Uint32Value()
38 return val_; in SizeValue()
45 size_t val_;
53 bool operator>(FrameOffset other) const { return val_ > other.val_; }
54 bool operator<(FrameOffset other) const { return val_ < other.val_; }
Dmonitor_pool_test.cc29 explicit RandGen(uint32_t seed) : val_(seed) {} in RandGen()
32 val_ = val_ * 48271 % 2147483647 + 13; in next()
33 return val_; in next()
36 uint32_t val_; member in art::RandGen
/art/libartbase/base/
Dbit_struct_detail.h66 converter.value_.val_ = value; in ToUnderlyingStorage()
67 return converter.storage_.val_; in ToUnderlyingStorage()
72 converter.storage_.val_ = storage; in FromUnderlyingStorage()
73 return converter.value_.val_; in FromUnderlyingStorage()
79 StorageType val_; member
82 T val_; member
/art/runtime/arch/
Dmemcmp16_test.cc23 explicit RandGen(uint32_t seed) : val_(seed) {} in RandGen()
26 val_ = val_ * 48271 % 2147483647 + 13; in next()
27 return val_; in next()
30 uint32_t val_; member in RandGen
Dstub_test.cc515 explicit RandGen(uint32_t seed) : val_(seed) {} in RandGen()
518 val_ = val_ * 48271 % 2147483647 + 13; in next()
519 return val_; in next()
522 uint32_t val_; member in art::RandGen
/art/runtime/gc/accounting/
Dspace_bitmap_test.cc146 explicit RandGen(uint32_t seed) : val_(seed) {} in RandGen()
149 val_ = val_ * 48271 % 2147483647 + 13; in next()
150 return val_; in next()
153 uint32_t val_; member in art::gc::accounting::RandGen
/art/openjdkjvmti/
Dti_method.cc804 val_(val), in GetLocalVariableClosure()
810 val_->l = nullptr; in GetResult()
813 val_->l = static_cast<JNIEnv*>(jni)->NewLocalRef(obj_val_); in GetResult()
903 reinterpret_cast<uint32_t*>(&val_->i))) { in Execute()
916 reinterpret_cast<uint64_t*>(&val_->j))) { in Execute()
931 jvalue* val_; member in openjdkjvmti::GetLocalVariableClosure
972 : CommonLocalVariableClosure(jvmti, depth, slot), caller_(caller), type_(type), val_(val) {} in SetLocalVariableClosure()
985 art::ObjPtr<art::mirror::Object> new_val(art::Thread::Current()->DecodeJObject(val_.l)); in GetTypeError()
1006 if (val_.i == 0) { in GetTypeErrorInner()
1039 } else if (val_.l == nullptr) { in GetTypeErrorInner()
[all …]