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

/art/runtime/base/
H A Darray_slice.h47 // Create an array slice of the elements between start_offset and end_offset of the array with
48 // each element being element_size bytes long. Both start_offset and end_offset are in
52 uint32_t end_offset,
55 size_(end_offset - start_offset),
58 DCHECK_LE(start_offset, end_offset);
65 // Create an array slice of the elements between start_offset and end_offset of the array with
67 // and end_offset are in element_size units.
70 uint32_t end_offset,
74 size_(end_offset - start_offset),
78 DCHECK_LE(start_offset, end_offset);
50 ArraySlice(T* array, uint32_t start_offset, uint32_t end_offset, size_t element_size = sizeof(T)) argument
68 ArraySlice(LengthPrefixedArray<T>* array, uint32_t start_offset, uint32_t end_offset, size_t element_size = sizeof(T), size_t alignment = alignof(T)) argument
[all...]
/art/runtime/gc/accounting/
H A Dcard_table_test.cc115 size_t end_offset = 0; local
119 uint8_t* end = cend - end_offset;
120 end_offset = (end_offset + kObjectAlignment) % CardTable::kCardSize;
/art/compiler/
H A Doat_writer.cc1954 size_t end_offset = start_offset + oat_dex_file->dex_file_size_;
1955 actual_offset = lseek(file->Fd(), end_offset, SEEK_SET);
1956 if (actual_offset != static_cast<off_t>(end_offset)) {
1958 << " Expected: " << end_offset
1962 actual_offset = rodata->Seek(end_offset, kSeekSet);
1963 if (actual_offset != static_cast<off_t>(end_offset)) {
1965 << " Expected: " << end_offset << " File: " << oat_dex_file->GetLocation();
1976 if (file->SetLength(end_offset) != 0) {
2017 size_t end_offset = start_offset + oat_dex_file->dex_file_size_;
2019 if (actual_offset != static_cast<off_t>(end_offset)) {
[all...]
/art/runtime/
H A Dtrace.h213 void GetVisitedMethods(size_t end_offset, std::set<ArtMethod*>* visited_methods)
H A Dstack_map.h657 FieldEncoding(size_t start_offset, size_t end_offset, int32_t min_value = 0) argument
658 : start_offset_(start_offset), end_offset_(end_offset), min_value_(min_value) {
/art/oatdump/
H A Doatdump.cc481 uintptr_t end_offset = *it; local
482 return end_offset - begin_offset;

Completed in 2541 milliseconds