Home
last modified time | relevance | path

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

/art/runtime/
Doffsets.h30 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()
42 size_t val_;
50 bool operator>(FrameOffset other) const { return val_ > other.val_; }
51 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.h158 vs.pod_.val_ = GetStorage(); in Get()
166 storage_.pod_.val_ = BitFieldInsert(storage_.pod_.val_, in Set()
167 value_as_storage.pod_.val_, in Set()
174 return BitFieldExtract(storage_.pod_.val_, kBitOffset, kBitWidth); in GetStorage()
180 StorageType 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.cc644 explicit RandGen(uint32_t seed) : val_(seed) {} in RandGen()
647 val_ = val_ * 48271 % 2147483647 + 13; in next()
648 return val_; in next()
651 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.cc689 val_(val), in GetLocalVariableClosure()
694 val_->l = obj_val_.IsNull() in GetResult()
744 reinterpret_cast<uint32_t*>(&val_->i))) { in Execute()
757 reinterpret_cast<uint64_t*>(&val_->j))) { in Execute()
772 jvalue* val_; member in openjdkjvmti::GetLocalVariableClosure
815 : CommonLocalVariableClosure(depth, slot), caller_(caller), type_(type), val_(val) {} in SetLocalVariableClosure()
826 } else if (val_.l == nullptr) { in GetTypeError()
831 caller_->DecodeJObject(val_.l)->GetClass(); in GetTypeError()
861 art::ObjPtr<art::mirror::Object> obj(caller_->DecodeJObject(val_.l)); in Execute()
875 static_cast<uint32_t>(val_.i), in Execute()
[all …]