Searched defs:old_offset (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dtrace.cc890 int32_t old_offset = cur_offset_.LoadRelaxed(); local
891 int32_t new_offset = old_offset + static_cast<int32_t>(src_size);
894 if (!trace_file_->WriteFully(buf_.get(), old_offset)) {
907 old_offset = 0;
912 memcpy(buf_.get() + old_offset, src, src_size);
920 int32_t old_offset = 0; local
925 old_offset = cur_offset_.LoadRelaxed();
926 new_offset = old_offset + GetRecordSize(clock_source_);
931 } while (!cur_offset_.CompareExchangeWeakSequentiallyConsistent(old_offset, new_offset));
958 ptr = buf_.get() + old_offset;
[all...]
H A Dclass_linker.cc288 MemberOffset old_offset = *field_offset; local
290 AddFieldGap(old_offset.Uint32Value(), field_offset->Uint32Value(), gaps);
7141 MemberOffset old_offset = field_offset; local
7143 AddFieldGap(old_offset.Uint32Value(), field_offset.Uint32Value(), &gaps);

Completed in 127 milliseconds