Searched refs:new_value (Results 26 - 38 of 38) sorted by relevance

12

/art/runtime/
H A Dstack.cc396 uint32_t new_value,
415 shadow_frame->SetVRegReference(vreg, reinterpret_cast<mirror::Object*>(new_value));
417 shadow_frame->SetVReg(vreg, new_value);
424 uint64_t new_value,
451 shadow_frame->SetVRegLong(vreg, new_value);
394 SetVReg(ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind) argument
422 SetVRegPair(ArtMethod* m, uint16_t vreg, uint64_t new_value, VRegKind kind_lo, VRegKind kind_hi) argument
H A Dart_method-inl.h460 uint32_t new_value = (GetAccessFlags() & ~kAccIntrinsicBits) | kAccIntrinsic | intrinsic_bits; local
475 SetAccessFlags(new_value);
498 SetAccessFlags(new_value);
H A Dart_method.h825 ALWAYS_INLINE void SetNativePointer(MemberOffset offset, T new_value, PointerSize pointer_size) { argument
829 uintptr_t ptr = reinterpret_cast<uintptr_t>(new_value);
832 *reinterpret_cast<uint64_t*>(addr) = reinterpret_cast<uintptr_t>(new_value);
H A Dsubtype_check_test.cc91 int32_t new_value)
95 memcpy(&subtype_check_info_and_status_, &new_value, sizeof(int32_t));
/art/runtime/hprof/
H A Dhprof.cc240 virtual void UpdateU4(size_t offset, uint32_t new_value ATTRIBUTE_UNUSED) {
306 void UpdateU4(size_t offset, uint32_t new_value) OVERRIDE {
308 buffer_[offset + 0] = static_cast<uint8_t>((new_value >> 24) & 0xFF);
309 buffer_[offset + 1] = static_cast<uint8_t>((new_value >> 16) & 0xFF);
310 buffer_[offset + 2] = static_cast<uint8_t>((new_value >> 8) & 0xFF);
311 buffer_[offset + 3] = static_cast<uint8_t>((new_value >> 0) & 0xFF);
/art/runtime/gc/accounting/
H A Dmod_union_table.cc46 uint8_t new_value ATTRIBUTE_UNUSED) const {
63 uint8_t new_value ATTRIBUTE_UNUSED) const {
/art/runtime/gc/
H A Dheap-inl.h423 ObjPtr<mirror::Object> new_value ATTRIBUTE_UNUSED) {
H A Dheap.h474 ObjPtr<mirror::Object> new_value)
H A Dheap.cc1118 Atomic<AllocationListener*>* storage, AllocationListener* new_value) {
1122 } while (!storage->CompareAndSetStrongSequentiallyConsistent(old, new_value));
1117 GetAndOverwriteAllocationListener( Atomic<AllocationListener*>* storage, AllocationListener* new_value) argument
/art/test/ti-agent/
H A Dtrace_helper.cc202 jvalue new_value) {
220 jobject value = GetJavaValueByType(jnienv, type_char, new_value);
193 fieldModificationCB(jvmtiEnv* jvmti, JNIEnv* jnienv, jthread thr, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field, char type_char, jvalue new_value) argument
/art/dex2oat/linker/
H A Dimage_writer.cc2841 void* new_value = value; local
2847 new_value = reinterpret_cast<void*>(image_info.image_begin_ + relocation.offset);
2850 *reinterpret_cast<uint32_t*>(target) = PointerToLowMemUInt32(new_value);
2852 *reinterpret_cast<uint64_t*>(target) = reinterpret_cast<uintptr_t>(new_value);
/art/openjdkjvmti/include/
H A Djvmti.h812 jvalue new_value);
/art/compiler/optimizing/
H A Dnodes.h458 void SetMaximumNumberOfOutVRegs(uint16_t new_value) { argument
459 maximum_number_of_out_vregs_ = new_value;

Completed in 248 milliseconds

12