Searched refs:new_offset (Results 1 - 6 of 6) sorted by relevance

/art/compiler/
H A Dvector_output_stream.cc28 off_t new_offset = 0; local
31 new_offset = offset;
35 new_offset = offset_ + offset;
39 new_offset = vector_.size() + offset;
43 EnsureCapacity(new_offset);
44 offset_ = new_offset;
H A Dvector_output_stream.h40 off_t new_offset = offset_ + byte_count; local
41 EnsureCapacity(new_offset);
43 offset_ = new_offset;
51 void EnsureCapacity(off_t new_offset) { argument
52 if (new_offset > static_cast<off_t>(vector_.size())) {
53 vector_.resize(new_offset);
H A Doat_writer.cc544 off_t new_offset = out.Seek(size_executable_offset_alignment_, kSeekCurrent); local
546 if (static_cast<uint32_t>(new_offset) != expected_file_offset) {
547 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
679 off_t new_offset = out.Seek(aligned_code_delta, kSeekCurrent); local
682 if (static_cast<uint32_t>(new_offset) != expected_offset) {
683 PLOG(ERROR) << "Failed to seek to align oat code. Actual: " << new_offset
/art/runtime/mirror/
H A Dstring.h130 void SetOffset(int32_t new_offset) { argument
131 DCHECK_LE(0, new_offset);
132 DCHECK_GE(GetLength(), new_offset); local
133 SetField32(OFFSET_OF_OBJECT_MEMBER(String, offset_), new_offset, false); local
/art/runtime/
H A Dtrace.cc608 int32_t new_offset; local
612 new_offset = old_offset + GetRecordSize(clock_source_);
613 if (new_offset > buffer_size_) {
617 } while (android_atomic_release_cas(old_offset, new_offset, &cur_offset_) != 0);
H A Ddex_file_verifier.cc1796 uint32_t new_offset = (offset + alignment_mask) & ~alignment_mask; local
1797 ptr_ = begin_ + new_offset;

Completed in 6249 milliseconds