Searched refs:end (Results 1 - 25 of 110) sorted by relevance

12345

/art/test/028-array-write/src/
H A DMain.java27 static public void report(long start, long end) { argument
32 System.out.println("Finished in " + ((end - start) / 1000000.0)
42 long start, end;
50 end = System.nanoTime();
52 report(start, end);
56 long start, end;
68 end = System.nanoTime();
70 report(start, end);
/art/compiler/sea_ir/ir/
H A Dregions_test.cc34 EXPECT_TRUE(std::find(regions->begin(), regions->end(), root) != regions->end());
35 EXPECT_TRUE(std::find(regions->begin(), regions->end(), then_region) != regions->end());
36 EXPECT_TRUE(std::find(regions->begin(), regions->end(), else_region) != regions->end());
49 EXPECT_TRUE(std::find(succs->begin(), succs->end(), then_region) != succs->end());
50 EXPECT_TRUE(std::find(succs->begin(), succs->end(), else_region) != succs->end());
[all...]
H A Dsea.cc35 cit != phis->end(); cit++) {
40 cit != instructions->end(); cit++) {
47 cit != ordered_regions_.end(); cit++ ) {
65 succ_it != succs->end(); ++succ_it) {
81 for (crt_it = regions_.begin(); crt_it != regions_.end(); ++crt_it) {
87 for (crt_it = regions_.begin(); crt_it != regions_.end(); ++crt_it) {
97 pred_it != preds->end(); ++pred_it) {
98 if (processedNodes.end() != processedNodes.find((*pred_it))) {
107 pred_it != preds->end(); ++pred_it) {
126 region_it != regions_.end(); region_i
[all...]
/art/runtime/base/
H A Dstl_util.h28 std::sort(v->begin(), v->end());
29 v->erase(std::unique(v->begin(), v->end()), v->end());
44 ForwardIterator end) {
45 while (begin != end) {
54 // hash_set, or any other STL container which defines sensible begin(), end(),
65 STLDeleteContainerPointers(container->begin(), container->end());
75 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
43 STLDeleteContainerPointers(ForwardIterator begin, ForwardIterator end) argument
H A Dtiming_logger.cc70 for (CumulativeLogger::HistogramsIterator it = histograms_.begin(), end = histograms_.end();
71 it != end; ++it) {
80 for (base::TimingLogger::SplitTimingsIterator it = splits.begin(), end = splits.end();
81 it != end; ++it) {
98 if (histograms_.find(label) == histograms_.end()) {
110 for (CumulativeLogger::HistogramsIterator it = histograms_.begin(), end = histograms_.end();
111 it != end;
[all...]
/art/runtime/gc/allocator/
H A Ddlmalloc.h38 extern "C" void DlmallocMadviseCallback(void* start, void* end, size_t used_bytes, void* /*arg*/);
H A Ddlmalloc.cc53 extern "C" void DlmallocMadviseCallback(void* start, void* end, size_t used_bytes, void* arg) { argument
60 end = reinterpret_cast<void*>(art::RoundDown(reinterpret_cast<uintptr_t>(end), art::kPageSize));
61 if (end > start) {
62 size_t length = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
/art/test/030-bad-finalizer/src/
H A DBadFinalizer.java34 long start, end;
38 end = System.nanoTime();
/art/compiler/
H A Dleb128_encoder.h45 void InsertBack(It cur, It end) { argument
46 for (; cur != end; ++cur) {
/art/compiler/utils/
H A Ddedupe_set.h51 iterator end() { return keys_.end(); } function in class:art::DedupeSet
52 const_iterator end() const { return keys_.end(); } function in class:art::DedupeSet
59 if (it != keys_.end()) {
/art/compiler/dex/
H A Dlocal_value_numbering.h47 if (it != value_map_.end()) {
59 return (it != value_map_.end());
66 if (it == memory_version_map_.end()) {
78 if (it == memory_version_map_.end()) {
87 if (it != sreg_value_map_.end()) {
97 if (it != sreg_value_map_.end()) {
109 if (it != sreg_wide_value_map_.end()) {
119 if (it != sreg_wide_value_map_.end()) {
/art/test/023-many-interfaces/src/
H A DManyInterfaces.java173 private static void report(String label, long start, long end, int iter, argument
176 System.out.println(label + ": " + (end - start) / 1000 + "us"
177 + " (" + (end - start) / (iter*rept) + "ns per call)");
194 long start, end;
207 end = System.nanoTime();
208 report("testIface001", start, end, iter, rept);
212 end = System.nanoTime();
213 report("testIface049", start, end, iter, rept);
217 end = System.nanoTime();
218 report("testIface099", start, end, ite
[all...]
/art/runtime/
H A Ddisassembler.h37 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) = 0;
H A Ddisassembler_mips.h31 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end);
H A Ddisassembler_x86.h30 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end);
H A Dintern_table.cc64 for (auto it = table.find(hash_code), end = table.end(); it != end; ++it) {
83 for (auto it = table.find(hash_code), end = table.end(); it != end; ++it) {
222 for (auto it = weak_interns_.begin(), end = weak_interns_.end(); it != end;) {
/art/runtime/gc/accounting/
H A Dcard_table.cc85 byte* __attribute__((unused)) end = mem_map_->End(); local
107 byte* end = mem_map_->End(); local
111 << " end: " << reinterpret_cast<void*>(end)
114 << " heap end: " << AddrFromCard(end)
H A Dspace_bitmap_test.cc44 BitmapVerify(SpaceBitmap* bitmap, const mirror::Object* begin, const mirror::Object* end) argument
47 end_(end) {}
78 // This handles all the cases, having runs which start and end on the same word, and different
84 mirror::Object* end = local
86 BitmapVerify(space_bitmap.get(), start, end);
H A Dmod_union_table.cc151 references_.find(ref) == references_.end()) {
203 std::set<const Object*> reference_set(it.second.begin(), it.second.end());
206 uintptr_t end = start + CardTable::kCardSize; local
210 live_bitmap->VisitMarkedRange(start, end, visitor);
220 uintptr_t end = start + CardTable::kCardSize; local
221 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << ",";
227 uintptr_t end = start + CardTable::kCardSize; local
228 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << "->{";
247 uintptr_t end = start + CardTable::kCardSize; local
251 live_bitmap->VisitMarkedRange(start, end, visito
297 auto end = start + CardTable::kCardSize; local
314 auto end = start + CardTable::kCardSize; local
[all...]
H A Dcard_table.h73 void VisitClear(const void* start, const void* end, const Visitor& visitor) { argument
75 byte* card_end = CardFromAddr(end);
102 // For every dirty at least minumum age between begin and end invoke the visitor with the
133 byte* end = mem_map_->End(); local
134 return card_addr >= begin && card_addr < end;
/art/test/021-string2/src/junit/framework/
H A DComparisonFailure.java34 int end= Math.min(fExpected.length(), fActual.length());
37 for (; i < end; i++) {
56 if (i <= end && i > 0) {
/art/test/053-wait-some/src/
H A DMain.java33 long start, end;
54 end = System.currentTimeMillis();
56 long elapsed = end - start;
/art/test/082-inline-execute/src/junit/framework/
H A DComparisonFailure.java34 int end= Math.min(fExpected.length(), fActual.length());
37 for (; i < end; i++) {
56 if (i <= end && i > 0) {
/art/compiler/sea_ir/debug/
H A Ddot_gen.cc28 cit != graph->GetRegions()->end(); cit++ ) {
38 cit != dominated_regions->end(); cit++ ) {
49 def_it != definition_edges->end(); def_it++) {
55 if (type_it != types_->end()) {
69 cit != used_in->end(); cit++) {
81 def_it != definition_edges.end(); def_it++) {
87 if (type_it != types_->end()) {
101 cit != used_in->end(); cit++) {
129 cit != phi_instructions->end(); cit++) {
134 cit != instructions->end(); ci
[all...]
/art/compiler/sea_ir/types/
H A Dtypes.h40 if (type_map_.end() != result_it) {

Completed in 3180 milliseconds

12345