Searched refs:val_ (Results 1 – 8 of 8) sorted by relevance
35 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_;
30 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_; }
29 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
66 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_; member82 T val_; member
23 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
515 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
146 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
804 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::GetLocalVariableClosure972 : 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 …]