Home
last modified time | relevance | path

Searched refs:end (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/art/test/412-new-array/smali/
Dfill_array_data.smali14 .end array-data
16 .end method
27 .end array-data
29 .end method
40 .end array-data
42 .end method
53 .end array-data
55 .end method
66 .end array-data
68 .end method
[all …]
Dfilled_new_array.smali10 .end method
17 .end method
24 .end method
31 .end method
38 .end method
45 .end method
/art/test/028-array-write/src/
DMain.java27 static public void report(long start, long end) { in report() argument
32 System.out.println("Finished in " + ((end - start) / 1000000.0) in report()
42 long start, end; in writeTest() local
50 end = System.nanoTime(); in writeTest()
52 report(start, end); in writeTest()
56 long start, end; in copyTest() local
68 end = System.nanoTime(); in copyTest()
70 report(start, end); in copyTest()
/art/cmdline/
Dtoken_range.h43 end_(token_list_->end()) in TokenRange()
51 end_(token_list_->end()) in TokenRange()
61 end_(token_list_->end()) {
63 assert(it_end <= token_list.end());
71 end_(token_list_->end()) in TokenRange()
78 end_(token_list_->end()) in TokenRange()
89 assert(it_end <= token_list->end()); in TokenRange()
102 end_(token_list_->end()) in TokenRange()
149 iterator end() const { in end() function
181 return std::equal(begin(), end(), other.begin());
[all …]
/art/runtime/gc/accounting/
Dheap_bitmap.cc28 auto it = std::find(continuous_space_bitmaps_.begin(), continuous_space_bitmaps_.end(), in ReplaceBitmap()
30 CHECK(it != continuous_space_bitmaps_.end()) << " continuous space bitmap " << old_bitmap in ReplaceBitmap()
37 auto it = std::find(large_object_bitmaps_.begin(), large_object_bitmaps_.end(), old_bitmap); in ReplaceLargeObjectBitmap()
38 CHECK(it != large_object_bitmaps_.end()) << " large object bitmap " << old_bitmap in ReplaceLargeObjectBitmap()
57 auto it = std::find(continuous_space_bitmaps_.begin(), continuous_space_bitmaps_.end(), bitmap); in RemoveContinuousSpaceBitmap()
58 DCHECK(it != continuous_space_bitmaps_.end()); in RemoveContinuousSpaceBitmap()
69 auto it = std::find(large_object_bitmaps_.begin(), large_object_bitmaps_.end(), bitmap); in RemoveLargeObjectBitmap()
70 DCHECK(it != large_object_bitmaps_.end()); in RemoveLargeObjectBitmap()
Dcard_table.cc110 void CardTable::ClearCardRange(uint8_t* start, uint8_t* end) { in ClearCardRange() argument
112 memset(start, 0, end - start); in ClearCardRange()
116 CHECK_ALIGNED(reinterpret_cast<uintptr_t>(end), kCardSize); in ClearCardRange()
119 uint8_t* end_card = CardFromAddr(end); in ClearCardRange()
137 uint8_t* end = mem_map_->End(); in CheckAddrIsInCardTable() local
141 << " end: " << reinterpret_cast<void*>(end) in CheckAddrIsInCardTable()
144 << " heap end: " << AddrFromCard(end) in CheckAddrIsInCardTable()
Dspace_bitmap_test.cc43 const mirror::Object* end) in BitmapVerify() argument
46 end_(end) {} in BitmapVerify()
83 mirror::Object* end = in TEST_F() local
85 BitmapVerify(space_bitmap.get(), start, end); in TEST_F()
143 size_t end = offset + RoundDown(r.next() % (remain + 1), kAlignment); in RunTest() local
146 reinterpret_cast<uintptr_t>(heap_begin) + end, c); in RunTest()
149 for (uintptr_t k = offset; k < end; k += kAlignment) { in RunTest()
/art/runtime/gc/allocator/
Ddlmalloc.cc59 extern "C" void DlmallocMadviseCallback(void* start, void* end, size_t used_bytes, void* arg) { in DlmallocMadviseCallback() argument
66 end = reinterpret_cast<void*>(art::RoundDown(reinterpret_cast<uintptr_t>(end), art::kPageSize)); in DlmallocMadviseCallback()
67 if (end > start) { in DlmallocMadviseCallback()
68 size_t length = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start); in DlmallocMadviseCallback()
80 void* end ATTRIBUTE_UNUSED, size_t used_bytes, in DlmallocBytesAllocatedCallback()
89 extern "C" void DlmallocObjectsAllocatedCallback(void* start, void* end, size_t used_bytes, in DlmallocObjectsAllocatedCallback() argument
92 UNUSED(end); in DlmallocObjectsAllocatedCallback()
Ddlmalloc.h47 extern "C" void DlmallocMadviseCallback(void* start, void* end, size_t used_bytes, void* /*arg*/);
52 extern "C" void DlmallocBytesAllocatedCallback(void* start, void* end, size_t used_bytes, void* arg…
53 extern "C" void DlmallocObjectsAllocatedCallback(void* start, void* end, size_t used_bytes, void* a…
/art/runtime/base/
Dstl_util.h28 std::sort(v->begin(), v->end()); in STLSortAndRemoveDuplicates()
29 v->erase(std::unique(v->begin(), v->end()), v->end()); in STLSortAndRemoveDuplicates()
44 ForwardIterator end) { in STLDeleteContainerPointers() argument
45 while (begin != end) { in STLDeleteContainerPointers()
65 STLDeleteContainerPointers(container->begin(), container->end()); in STLDeleteElements()
76 for (typename T::iterator i = v->begin(); i != v->end(); ++i) { in STLDeleteValues()
Dhash_set_test.cc73 ASSERT_TRUE(after_it == hash_set.end()); in TEST_F()
77 ASSERT_TRUE(it == hash_set.end()); in TEST_F()
89 ASSERT_TRUE(it != hash_set.end()); in TEST_F()
96 ASSERT_TRUE(it != hash_set.end()); in TEST_F()
103 ASSERT_TRUE(it == hash_set.end()); in TEST_F()
107 ASSERT_TRUE(it != hash_set.end()); in TEST_F()
114 ASSERT_TRUE(hash_set.begin() == hash_set.end()); in TEST_F()
132 for (auto it = hash_set.begin(); it != hash_set.end();) { in TEST_F()
192 ASSERT_EQ(it1 == hash_set.end(), it2 == std_set.end()); in TEST_F()
193 if (it1 != hash_set.end()) { in TEST_F()
/art/test/023-many-interfaces/src/
DManyInterfaces.java173 private static void report(String label, long start, long end, int iter, in report() argument
176 System.out.println(label + ": " + (end - start) / 1000 + "us" in report()
177 + " (" + (end - start) / (iter*rept) + "ns per call)"); in report()
194 long start, end; in run() local
207 end = System.nanoTime(); in run()
208 report("testIface001", start, end, iter, rept); in run()
212 end = System.nanoTime(); in run()
213 report("testIface049", start, end, iter, rept); in run()
217 end = System.nanoTime(); in run()
218 report("testIface099", start, end, iter, rept); in run()
[all …]
/art/test/800-smali/smali/
Db_21873167.smali8 .end method
15 :end
17 .catchall {:start .. :end} :end
18 .end method
Db_21902684.smali8 .end method
12 goto :end
15 :end
17 .end method
/art/runtime/
Dmem_map.cc61 static_cast<uint32_t>(it->end), in operator <<()
71 for (auto it = mem_maps.begin(); it != mem_maps.end(); ++it) { in operator <<()
144 uintptr_t end = begin + size; in ContainedWithinExistingMap() local
150 for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) { in ContainedWithinExistingMap()
151 if ((begin >= it->start && begin < it->end) // start of new within old in ContainedWithinExistingMap()
152 && (end > it->start && end <= it->end)) { // end of new within old in ContainedWithinExistingMap()
158 "any existing map. See process maps in the log.", begin, end); in ContainedWithinExistingMap()
164 uintptr_t end, in CheckNonOverlapping() argument
171 for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) { in CheckNonOverlapping()
172 if ((begin >= it->start && begin < it->end) // start of new within old in CheckNonOverlapping()
[all …]
Doat.cc37 SafeMap<std::string, std::string>::const_iterator end = variable_data->end(); in ComputeOatHeaderSize() local
38 for ( ; it != end; ++it) { in ComputeOatHeaderSize()
380 static const char* ParseString(const char* start, const char* end) { in ParseString() argument
381 while (start < end && *start != 0) { in ParseString()
389 const char* end = ptr + key_value_store_size_; in GetStoreValueByKey() local
391 while (ptr < end) { in GetStoreValueByKey()
393 const char* str_end = ParseString(ptr, end); in GetStoreValueByKey()
394 if (str_end < end) { in GetStoreValueByKey()
397 if (ParseString(str_end + 1, end) < end) { in GetStoreValueByKey()
402 ptr = ParseString(str_end + 1, end) + 1; in GetStoreValueByKey()
[all …]
Dleb128.h148 for (uint8_t* end = EncodeUnsignedLeb128(dest, value); end < old_end; end++) { in UpdateUnsignedLeb128() local
150 end[-1] |= 0x80; in UpdateUnsignedLeb128()
151 end[0] = 0; in UpdateUnsignedLeb128()
197 void InsertBackUnsigned(It cur, It end) { in InsertBackUnsigned() argument
198 for (; cur != end; ++cur) { in InsertBackUnsigned()
208 void InsertBackSigned(It cur, It end) { in InsertBackSigned() argument
209 for (; cur != end; ++cur) { in InsertBackSigned()
/art/test/432-optimizing-cmp/smali/
Dcmp.smali9 .end method
15 .end method
21 .end method
27 .end method
33 .end method
/art/test/449-checker-bce/src/
DMain.java636 void foo1(int[] array, int start, int end) { in foo1() argument
641 for (int i = start ; i < end; i++) { in foo1()
671 void foo2(int[] array, int start, int end) { in foo2() argument
676 for (int i = start ; i <= end; i++) { in foo2()
705 void foo3(int[] array, int end) { in foo3() argument
709 for (int i = 3 ; i <= end; i++) { in foo3()
738 void foo4(int[] array, int end) { in foo4() argument
742 for (int i = end ; i > 0; i--) { in foo4()
779 void foo5(int[] array, int end) { in foo5() argument
786 for (int i = end - 2 ; i > 0; i--) { in foo5()
[all …]
/art/compiler/utils/
Ddedupe_set.h58 return std::lexicographical_compare(a.store_ptr->begin(), a.store_ptr->end(), in operator()
59 b.store_ptr->begin(), b.store_ptr->end()); in operator()
61 return std::lexicographical_compare(a.store_ptr->begin(), a.store_ptr->end(), in operator()
62 b.in_key->second->begin(), b.in_key->second->end()); in operator()
64 return std::lexicographical_compare(a.in_key->second->begin(), a.in_key->second->end(), in operator()
65 b.store_ptr->begin(), b.store_ptr->end()); in operator()
67 return std::lexicographical_compare(a.in_key->second->begin(), a.in_key->second->end(), in operator()
68 b.in_key->second->begin(), b.in_key->second->end()); in operator()
92 if (it != keys_[shard_bin].end()) { in Add()
151 allocator_.construct(ret, key.begin(), key.end(), allocator_); in CreateStoreKey()
/art/test/004-InterfaceTest/src/
DMain.java29 long end = System.currentTimeMillis(); in test_virtual() local
30 return (end - start); in test_virtual()
40 long end = System.currentTimeMillis(); in test_interface() local
41 return (end - start); in test_interface()
/art/runtime/jdwp/
Dobject_registry.cc124 for (auto it = object_to_entry_.lower_bound(identity_hash_code), end = object_to_entry_.end(); in ContainsLocked() local
125 it != end && it->first == identity_hash_code; ++it) { in ContainsLocked()
174 if (it == id_to_entry_.end()) { in InternalGet()
190 CHECK(it != id_to_entry_.end()) << id; in GetJObject()
199 CHECK(it != id_to_entry_.end()); in DisableCollection()
207 CHECK(it != id_to_entry_.end()); in EnableCollection()
237 CHECK(it != id_to_entry_.end()); in IsCollected()
251 if (it == id_to_entry_.end()) { in DisposeObject()
261 for (auto inner_it = object_to_entry_.lower_bound(hash_code), end = object_to_entry_.end(); in DisposeObject() local
262 inner_it != end && inner_it->first == hash_code; ++inner_it) { in DisposeObject()
/art/test/457-regs/smali/
DPhiLiveness.smali29 .end method
41 .end method
53 .end method
65 .end method
77 .end method
80 .end method
82 .end method
/art/compiler/dex/
Dmir_field_info.cc38 for (auto it = field_infos, end = field_infos + count; it != end; ++it) { in Resolve() local
57 for (auto it = field_infos, end = field_infos + count; it != end; ++it) { in Resolve() local
101 for (auto it = field_infos, end = field_infos + count; it != end; ++it) { in Resolve() local
122 for (auto it = field_infos, end = field_infos + count; it != end; ++it) { in Resolve() local
/art/compiler/
Dcompiled_method.cc35 quick_code_ = new SwapVector<uint8_t>(quick_code->begin(), quick_code->end(), in SetCode()
56 return std::equal(quick_code_->begin(), quick_code_->end(), rhs.quick_code_->begin()); in operator ==()
140 patches_(patches.begin(), patches.end(), driver->GetSwapSpaceAllocator()) { in CompiledMethod()
145 src_mapping_table_ = new SwapSrcMap(src_mapping_table->begin(), src_mapping_table->end(), in CompiledMethod()
149 nullptr : new SwapVector<uint8_t>(mapping_table.begin(), mapping_table.end(), in CompiledMethod()
151 vmap_table_ = new SwapVector<uint8_t>(vmap_table.begin(), vmap_table.end(), in CompiledMethod()
154 new SwapVector<uint8_t>(native_gc_map.begin(), native_gc_map.end(), in CompiledMethod()
157 new SwapVector<uint8_t>(cfi_info.begin(), cfi_info.end(), driver->GetSwapSpaceAllocator()); in CompiledMethod()

12345678910>>...12