/art/test/976-conflict-no-methods/smali/ |
D | Main.smali | 25 .end method 33 .end method 38 .end method 43 .end method 48 .end method 53 .end method 58 .end method 63 .end method 68 .end method 73 .end method [all …]
|
D | Iface.smali | 89 .end method 92 .end method 95 .end method 98 .end method 101 .end method 104 .end method 107 .end method 110 .end method 113 .end method 116 .end method [all …]
|
/art/test/972-default-imt-collision/smali/ |
D | Iface2.smali | 88 .end method 91 .end method 94 .end method 97 .end method 100 .end method 103 .end method 106 .end method 109 .end method 112 .end method 115 .end method [all …]
|
/art/test/412-new-array/smali/ |
D | fill_array_data.smali | 13 .end array-data 15 .end method 26 .end array-data 28 .end method 37 .end array-data 43 .end method 54 .end array-data 56 .end method 67 .end array-data 69 .end method [all …]
|
D | filled_new_array.smali | 10 .end method 17 .end method 24 .end method 31 .end method 38 .end method 45 .end method
|
/art/compiler/utils/ |
D | intrusive_forward_list_test.cc | 64 ASSERT_EQ(std::distance((expected).begin(), (expected).end()), \ 65 std::distance((value).begin(), (value).end())); \ 66 ASSERT_TRUE(std::equal((expected).begin(), (expected).end(), (value).begin())); \ 147 ASSERT_TRUE(ifl.end() == ifl.cend()); in IteratorOperators() 148 ASSERT_FALSE(ifl.end() != ifl.cend()); in IteratorOperators() 150 ASSERT_TRUE(ifl.begin() == ifl.end()); // Empty. in IteratorOperators() 151 ASSERT_FALSE(ifl.begin() != ifl.end()); // Empty. in IteratorOperators() 156 ASSERT_FALSE(ifl.begin() == ifl.end()); // Not empty. in IteratorOperators() 157 ASSERT_TRUE(ifl.begin() != ifl.end()); // Not empty. in IteratorOperators() 170 std::vector<ValueType> storage(ref.begin(), ref.end()); in ConstructRange() [all …]
|
/art/test/028-array-write/src/ |
D | Main.java | 27 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/test/VerifierDeps/ |
D | Main.smali | 21 .end method 26 .end method 31 .end method 36 .end method 41 .end method 46 .end method 51 .end method 57 .end method 74 .end method 83 .end method [all …]
|
/art/libartbase/base/ |
D | stl_util.h | 40 ForwardIterator end) { in STLDeleteContainerPointers() argument 41 while (begin != end) { in STLDeleteContainerPointers() 61 STLDeleteContainerPointers(container->begin(), container->end()); in STLDeleteElements() 72 for (typename T::iterator i = v->begin(); i != v->end(); ++i) { in STLDeleteValues() 94 auto it = std::find(container.begin(), container.end(), value); in IndexOfElement() 95 DCHECK(it != container.end()); // Must exist. in IndexOfElement() 102 auto it = std::find(container.begin(), container.end(), value); in RemoveElement() 103 DCHECK(it != container.end()); // Must exist. in RemoveElement() 110 auto it = std::find(container.begin(), container.end(), old_value); in ReplaceElement() 111 DCHECK(it != container.end()); // Must exist. in ReplaceElement() [all …]
|
D | leb128.h | 63 const void* end, in DecodeUnsignedLeb128Checked() argument 66 if (ptr >= end) { in DecodeUnsignedLeb128Checked() 71 if (ptr >= end) { in DecodeUnsignedLeb128Checked() 77 if (ptr >= end) { in DecodeUnsignedLeb128Checked() 83 if (ptr >= end) { in DecodeUnsignedLeb128Checked() 89 if (ptr >= end) { in DecodeUnsignedLeb128Checked() 150 const void* end, in DecodeSignedLeb128Checked() argument 153 if (ptr >= end) { in DecodeSignedLeb128Checked() 160 if (ptr >= end) { in DecodeSignedLeb128Checked() 168 if (ptr >= end) { in DecodeSignedLeb128Checked() [all …]
|
D | utils.h | 38 char* end; in ParseUint() local 39 unsigned long long int result = strtoull(in, &end, 0); // NOLINT(runtime/int) in ParseUint() 40 if (in == end || *end != '\0') { in ParseUint() 52 char* end; in ParseInt() local 53 long long int result = strtoll(in, &end, 0); // NOLINT(runtime/int) in ParseInt() 54 if (in == end || *end != '\0') { in ParseInt() 182 inline void FlushInstructionCache(char* begin, char* end) { in FlushInstructionCache() argument 183 __builtin___clear_cache(begin, end); in FlushInstructionCache() 186 inline void FlushDataCache(char* begin, char* end) { in FlushDataCache() argument 189 __builtin___clear_cache(begin, end); in FlushDataCache() [all …]
|
D | hash_set_test.cc | 75 ASSERT_TRUE(after_it == hash_set.end()); in TEST_F() 79 ASSERT_TRUE(it == hash_set.end()); in TEST_F() 91 ASSERT_TRUE(it != hash_set.end()); in TEST_F() 98 ASSERT_TRUE(it != hash_set.end()); in TEST_F() 105 ASSERT_TRUE(it == hash_set.end()); in TEST_F() 109 ASSERT_TRUE(it != hash_set.end()); in TEST_F() 116 ASSERT_TRUE(hash_set.begin() == hash_set.end()); in TEST_F() 134 for (auto it = hash_set.begin(); it != hash_set.end();) { in TEST_F() 194 EXPECT_NE(hash_set.end(), hash_set.Find(initial_string)) in TEST_F() 250 ASSERT_EQ(it1 == hash_set.end(), it2 == std_set.end()); in TEST_F() [all …]
|
/art/runtime/gc/accounting/ |
D | heap_bitmap.cc | 28 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()
|
/art/test/800-smali/smali/ |
D | b_21873167.smali | 8 .end method 15 :end 17 .catchall {:start .. :end} :end 18 .end method
|
D | b_27799205_helper.smali | 12 .end method 19 .end method 26 .end method 33 .end method 40 .end method 47 .end method
|
D | b_21902684.smali | 8 .end method 12 goto :end 15 :end 17 .end method
|
/art/cmdline/ |
D | token_range.h | 45 end_(token_list_->end()) in TokenRange() 53 end_(token_list_->end()) in TokenRange() 63 end_(token_list_->end()) { 65 assert(it_end <= token_list.end()); 73 end_(token_list_->end()) in TokenRange() 80 end_(token_list_->end()) in TokenRange() 91 assert(it_end <= token_list->end()); in TokenRange() 104 end_(token_list_->end()) in TokenRange() 151 iterator end() const { in end() function 183 return std::equal(begin(), end(), other.begin()); [all …]
|
/art/test/978-virtual-interface/smali/ |
D | Iface.smali | 44 .end method 50 .end method 56 .end method 62 .end method 68 .end method 74 .end method 80 .end method 86 .end method 92 .end method 98 .end method [all …]
|
/art/compiler/optimizing/ |
D | graph_visualizer.h | 40 size_t end; member 62 void SetFrameEntryInterval(size_t start, size_t end) { in SetFrameEntryInterval() argument 63 frame_entry_interval_ = {start, end}; in SetFrameEntryInterval() 66 void AddInstructionInterval(HInstruction* instr, size_t start, size_t end) { in AddInstructionInterval() argument 67 instruction_intervals_.Put(instr, {start, end}); in AddInstructionInterval() 70 void AddSlowPathInterval(SlowPathCode* slow_path, size_t start, size_t end) { in AddSlowPathInterval() argument 71 slow_path_intervals_.push_back({slow_path, {start, end}}); in AddSlowPathInterval()
|
/art/runtime/gc/allocator/ |
D | dlmalloc.cc | 65 extern "C" void DlmallocMadviseCallback(void* start, void* end, size_t used_bytes, void* arg) { in DlmallocMadviseCallback() argument 72 end = reinterpret_cast<void*>(art::RoundDown(reinterpret_cast<uintptr_t>(end), art::kPageSize)); in DlmallocMadviseCallback() 73 if (end > start) { in DlmallocMadviseCallback() 74 size_t length = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start); in DlmallocMadviseCallback() 86 void* end ATTRIBUTE_UNUSED, in DlmallocBytesAllocatedCallback() 97 void* end ATTRIBUTE_UNUSED, in DlmallocObjectsAllocatedCallback()
|
/art/test/023-many-interfaces/src/ |
D | ManyInterfaces.java | 173 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/runtime/gc/collector/ |
D | immune_spaces.cc | 65 std::sort(intervals.begin(), intervals.end()); in CreateLargestImmuneRegion() 73 const uintptr_t end = std::get<1>(interval); in CreateLargestImmuneRegion() local 76 << reinterpret_cast<const void*>(end) << " is_heap=" << is_heap; in CreateLargestImmuneRegion() 77 DCHECK_GE(end, begin); in CreateLargestImmuneRegion() 89 cur_end = end; in CreateLargestImmuneRegion() 93 cur_heap_size += end - begin; in CreateLargestImmuneRegion() 108 DCHECK(spaces_.find(space) == spaces_.end()) << *space; in AddSpace() 124 return spaces_.find(space) != spaces_.end(); in ContainsSpace()
|
/art/test/432-optimizing-cmp/smali/ |
D | cmp.smali | 9 .end method 15 .end method 21 .end method 27 .end method 33 .end method
|
/art/test/660-store-8-16/smali/ |
D | TestCase.smali | 25 .end method 32 .end method 39 .end method 45 .end method 53 .end method 60 .end method 67 .end method 75 .end method 82 .end method 89 .end method [all …]
|
/art/test/121-modifiers/smali/ |
D | NonInf.smali | 85 .end method 95 .end method 105 .end method 110 .end method 120 .end method 123 .end method 133 .end method 143 .end method 153 .end method 167 .end method [all …]
|