Home
last modified time | relevance | path

Searched defs:new_value (Results 1 – 16 of 16) sorted by relevance

/art/runtime/entrypoints/portable/
Dportable_field_entrypoints.cc26 int32_t new_value) in art_portable_set32_static_from_code()
51 int64_t new_value) in art_portable_set64_static_from_code()
73 mirror::Object* new_value) in art_portable_set_obj_static_from_code()
138 mirror::Object* obj, uint32_t new_value) in art_portable_set32_instance_from_code()
156 mirror::Object* obj, int64_t new_value) in art_portable_set64_instance_from_code()
175 mirror::Object* new_value) in art_portable_set_obj_instance_from_code()
/art/runtime/entrypoints/quick/
Dquick_field_entrypoints.cc150 extern "C" int artSet32StaticFromCode(uint32_t field_idx, uint32_t new_value, in artSet32StaticFromCode()
170 uint64_t new_value, Thread* self, mirror::ArtMethod** sp) in artSet64StaticFromCode()
187 extern "C" int artSetObjStaticFromCode(uint32_t field_idx, mirror::Object* new_value, in artSetObjStaticFromCode()
208 extern "C" int artSet32InstanceFromCode(uint32_t field_idx, mirror::Object* obj, uint32_t new_value, in artSet32InstanceFromCode()
233 extern "C" int artSet64InstanceFromCode(uint32_t field_idx, mirror::Object* obj, uint64_t new_value, in artSet64InstanceFromCode()
262 mirror::Object* new_value, in artSetObjInstanceFromCode()
/art/runtime/gc/accounting/
Dcard_table-inl.h30 static inline bool byte_cas(byte old_value, byte new_value, byte* address) { in byte_cas()
129 byte expected, new_value; in ModifyCardsAtomic() local
143 byte expected, new_value; in ModifyCardsAtomic() local
/art/runtime/mirror/
Dart_field-inl.h64 inline void ArtField::Set32(Object* object, uint32_t new_value) const { in Set32()
76 inline void ArtField::Set64(Object* object, uint64_t new_value) const { in Set64()
88 inline void ArtField::SetObj(Object* object, const Object* new_value) const { in SetObj()
Dobject-inl.h254 inline void Object::SetField64(MemberOffset field_offset, uint64_t new_value, bool is_volatile) { in SetField64()
268 const Object* new_value) { in WriteBarrierField()
Dobject.cc85 void Object::CheckFieldAssignmentImpl(MemberOffset field_offset, const Object* new_value) { in CheckFieldAssignmentImpl()
Dobject.h246 void CheckFieldAssignment(MemberOffset field_offset, const Object* new_value) in CheckFieldAssignment()
Dart_method.cc82 void ArtMethod::SetDexCacheInitializedStaticStorage(ObjectArray<StaticStorageBase>* new_value) { in SetDexCacheInitializedStaticStorage()
/art/compiler/llvm/
Dir_builder.h143 ::llvm::Value* new_value, in StoreToObjectOffset()
158 ::llvm::Value* new_value, in StoreToObjectOffset()
168 ::llvm::Value* new_value, in CompareExchangeObjectOffset()
254 ::llvm::Value* new_value, in StoreToObjectOffset()
269 ::llvm::Value* new_value, in CompareExchangeObjectOffset()
Dgbc_expander.cc495 if (llvm::Value* new_value = ExpandIntrinsic(intr_id, *call_inst)) { in RewriteBasicBlock() local
1057 void GBCExpanderPass::Expand_ArrayPut(llvm::Value* new_value, in Expand_ArrayPut()
1142 llvm::Value* new_value, in Expand_IPutFast()
1187 llvm::Value* new_value, in Expand_SPutFast()
1591 llvm::Value* new_value = call_inst.getArgOperand(1); in Expand_HLArrayPut() local
1685 llvm::Value* new_value = call_inst.getArgOperand(1); in Expand_HLIPut() local
1972 llvm::Value* new_value = call_inst.getArgOperand(1); in Expand_HLSput() local
/art/runtime/
Datomic.cc109 bool QuasiAtomic::Cas64(int64_t old_value, int64_t new_value, volatile int64_t* addr) { in Cas64()
Dsignal_catcher.cc87 void SignalCatcher::SetHaltFlag(bool new_value) { in SetHaltFlag()
Dstack.cc159 void StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, in SetVReg()
/art/runtime/native/
Djava_lang_reflect_Field.cc171 static void SetFieldValue(mirror::Object* o, mirror::ArtField* f, const JValue& new_value, in SetFieldValue()
244 const JValue& new_value) { in SetPrimitiveField()
/art/compiler/dex/quick/
Dcodegen_util.cc324 LIR* new_value = static_cast<LIR*>(arena_->Alloc(sizeof(LIR), ArenaAllocator::kAllocData)); in AddWordData() local
/art/runtime/hprof/
Dhprof.cc301 void UpdateU4(size_t offset, uint32_t new_value) { in UpdateU4()