/art/test/911-get-stack-trace/src/art/ |
D | Recurse.java | 20 public static int foo(int x, int start, int max, ControlData data) { in foo() argument 21 bar(x, start, max, data); in foo() 25 private static long bar(int x, int start, int max, ControlData data) { in bar() argument 26 baz(x, start, max, data); in bar() 30 private static Object baz(int x, int start, int max, ControlData data) { in baz() argument 32 printOrWait(start, max, data); in baz() 34 foo(x - 1, start, max, data); in baz() 39 private static void printOrWait(int start, int max, ControlData data) { in printOrWait() argument 41 PrintThread.print(Thread.currentThread(), start, max); in printOrWait() local
|
/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 47 start = System.nanoTime(); in writeTest() 52 report(start, end); in writeTest() 56 long start, end; in copyTest() local 63 start = System.nanoTime(); in copyTest() 70 report(start, end); in copyTest()
|
/art/runtime/gc/allocator/ |
D | dlmalloc.cc | 62 extern "C" void DlmallocMadviseCallback(void* start, void* end, size_t used_bytes, void* arg) { in DlmallocMadviseCallback() argument 68 start = reinterpret_cast<void*>(art::RoundUp(reinterpret_cast<uintptr_t>(start), art::kPageSize)); in DlmallocMadviseCallback() 70 if (end > start) { in DlmallocMadviseCallback() 71 size_t length = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start); in DlmallocMadviseCallback() 72 int rc = madvise(start, length, MADV_DONTNEED); in DlmallocMadviseCallback() 82 extern "C" void DlmallocBytesAllocatedCallback(void* start ATTRIBUTE_UNUSED, in DlmallocBytesAllocatedCallback() 93 extern "C" void DlmallocObjectsAllocatedCallback(void* start ATTRIBUTE_UNUSED, in DlmallocObjectsAllocatedCallback()
|
D | dlmalloc.h | 47 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/compiler/optimizing/ |
D | graph_visualizer.h | 39 size_t start; 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/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 205 start = System.nanoTime(); in run() 208 report("testIface001", start, end, iter, rept); in run() 210 start = System.nanoTime(); in run() 213 report("testIface049", start, end, iter, rept); in run() 215 start = System.nanoTime(); in run() 218 report("testIface099", start, end, iter, rept); in run() [all …]
|
/art/test/003-omnibus-opcodes/src/ |
D | IntMath.java | 279 static void divLiteralTestBody(int start, int count) { in divLiteralTestBody() argument 286 normal = (start+i) / j; in divLiteralTestBody() 287 special = (start+i) / 3; in divLiteralTestBody() 290 normal = (start+i) / j; in divLiteralTestBody() 291 special = (start+i) / 4; in divLiteralTestBody() 294 normal = (start+i) / j; in divLiteralTestBody() 295 special = (start+i) / 5; in divLiteralTestBody() 298 normal = (start+i) / j; in divLiteralTestBody() 299 special = (start+i) / 6; in divLiteralTestBody() 302 normal = (start+i) / j; in divLiteralTestBody() [all …]
|
/art/test/499-bce-phi-array-length/src/ |
D | Main.java | 18 public static int foo(int start, int[] array) { in foo() argument 22 for (int i = start; i < 3; i++) { in foo() 35 public static int bar(int start, int[] array) { in bar() argument 37 for (int i = start; i < 3; i++) { in bar()
|
/art/runtime/gc/accounting/ |
D | remembered_set.cc | 144 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr)); in UpdateAndMarkReferences() local 145 DCHECK(space_->HasAddress(reinterpret_cast<mirror::Object*>(start))); in UpdateAndMarkReferences() 146 bitmap->VisitMarkedRange(start, start + CardTable::kCardSize, obj_visitor); in UpdateAndMarkReferences() 168 auto start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr)); in Dump() local 169 auto end = start + CardTable::kCardSize; in Dump() 170 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << "\n"; in Dump() 178 auto start = reinterpret_cast<uint8_t*>(card_table->AddrFromCard(card_addr)); in AssertAllDirtyCardsAreWithinSpace() local 179 auto end = start + CardTable::kCardSize; in AssertAllDirtyCardsAreWithinSpace() 180 DCHECK_LE(space_->Begin(), start); in AssertAllDirtyCardsAreWithinSpace()
|
D | mod_union_table.cc | 360 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card)); in Verify() local 361 live_bitmap->VisitMarkedRange(start, start + CardTable::kCardSize, visitor); in Verify() 370 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr)); in Dump() local 371 uintptr_t end = start + CardTable::kCardSize; in Dump() 372 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << ","; in Dump() 377 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card_addr)); in Dump() local 378 uintptr_t end = start + CardTable::kCardSize; in Dump() 379 os << reinterpret_cast<void*>(start) << "-" << reinterpret_cast<void*>(end) << "->{"; in Dump() 391 uintptr_t start = reinterpret_cast<uintptr_t>(card_table->AddrFromCard(card)); in VisitObjects() local 392 uintptr_t end = start + CardTable::kCardSize; in VisitObjects() [all …]
|
D | card_table-inl.h | 71 uintptr_t start = reinterpret_cast<uintptr_t>(AddrFromCard(card_cur)); in Scan() local 72 bitmap->VisitMarkedRange(start, start + kCardSize, visitor); in Scan() 93 … uintptr_t start = reinterpret_cast<uintptr_t>(AddrFromCard(reinterpret_cast<uint8_t*>(word_cur))); in Scan() local 101 bitmap->VisitMarkedRange(start, start + kCardSize, visitor); in Scan() 105 start += kCardSize; in Scan() 114 uintptr_t start = reinterpret_cast<uintptr_t>(AddrFromCard(card_cur)); in Scan() local 115 bitmap->VisitMarkedRange(start, start + kCardSize, visitor); in Scan()
|
/art/test/910-methods/ |
D | expected.txt | 6 Location start: 0 16 Location start: JVMTI_ERROR_NATIVE_METHOD 26 Location start: JVMTI_ERROR_NATIVE_METHOD 36 Location start: -1 46 Location start: -1 55 Location start: 0
|
/art/test/503-dead-instructions/smali/ |
D | DeadInstructions.smali | 24 :start 31 goto :start 37 :start 43 goto :start 49 :start 53 goto :start 59 :start 62 goto :start
|
/art/test/004-InterfaceTest/src/ |
D | Main.java | 25 long start = System.currentTimeMillis(); in test_virtual() local 30 return (end - start); in test_virtual() 36 long start = System.currentTimeMillis(); in test_interface() local 41 return (end - start); in test_interface()
|
/art/runtime/ |
D | utf_test.cc | 38 #define EXPECT_ARRAY_POSITION(expected, end, start) \ argument 40 reinterpret_cast<uintptr_t>(end) - reinterpret_cast<uintptr_t>(start)); 60 const char* const start = reinterpret_cast<const char*>(kAllSequences); in TEST_F() local 61 const char* ptr = start; in TEST_F() 68 EXPECT_ARRAY_POSITION(1, ptr, start); in TEST_F() 74 EXPECT_ARRAY_POSITION(3, ptr, start); in TEST_F() 80 EXPECT_ARRAY_POSITION(6, ptr, start); in TEST_F() 86 EXPECT_ARRAY_POSITION(10, ptr, start); in TEST_F() 92 EXPECT_ARRAY_POSITION(11, ptr, start); in TEST_F() 96 const char* const start = reinterpret_cast<const char *>(kSurrogateEncoding); in TEST_F() local [all …]
|
/art/test/917-fields-transformation/ |
D | expected.txt | 4 Result is start 5 take1 is start 11 take1 is start
|
/art/test/078-polymorphic-virtual/src/ |
D | Main.java | 23 derived1.start(); in main() 24 derived2.start(); in main() 25 derived3.start(); in main()
|
/art/tools/checker/match/ |
D | file.py | 57 for i in range(scope.start, scope.end): 62 raise MatchFailedException(assertion, scope.start, variables) 80 assert match.scope.start == match.scope.end 81 assert match.scope.start not in matchedLines 82 matchedLines.append(match.scope.start) 91 for i in range(scope.start, scope.end): 101 raise MatchFailedException(assertion, scope.start, variables) 154 scope = MatchScope(matchFrom, match.scope.start)
|
/art/compiler/linker/ |
D | vector_output_stream.h | 36 const uint8_t* start = reinterpret_cast<const uint8_t*>(buffer); in WriteFully() local 37 vector_->insert(vector_->end(), &start[0], &start[byte_count]); in WriteFully()
|
/art/test/053-wait-some/src/ |
D | Main.java | 33 long start, end; in doit() local 48 start = System.currentTimeMillis(); in doit() 56 long elapsed = end - start; in doit()
|
/art/test/559-bce-ssa/src/ |
D | Main.java | 19 public static void foo(int[] array, int[] array2, int start, int end) { in foo() argument 20 for (int i = start; i < end; ++i) { in foo()
|
/art/test/144-static-field-sigquit/src/ |
D | Main.java | 24 thread1.start(); in main() 26 thread2.start(); in main()
|
/art/test/148-multithread-gc-annotations/src/ |
D | Main.java | 22 annoThread.start(); in main() 23 gcThread.start(); in main()
|
/art/test/096-array-copy-concurrent-gc/src/ |
D | Main.java | 28 new ObjectCreatorThread(true).start(); in main() 29 new ObjectCreatorThread(false).start(); in main() 30 new ObjectCreatorThread(false).start(); in main()
|
/art/test/002-sleep/src/ |
D | Main.java | 11 long start = System.currentTimeMillis(); in main() local 13 long elapsed = System.currentTimeMillis() - start; in main()
|