/art/test/028-array-write/src/ |
D | Main.java | 27 static public void report(long start, long end) { in report() 42 long start, end; in writeTest() local 56 long start, end; in copyTest() local
|
/art/compiler/optimizing/ |
D | graph_visualizer.h | 42 size_t end; member 64 void SetFrameEntryInterval(size_t start, size_t end) { in SetFrameEntryInterval() 68 void AddInstructionInterval(HInstruction* instr, size_t start, size_t end) { in AddInstructionInterval() 72 void AddSlowPathInterval(SlowPathCode* slow_path, size_t start, size_t end) { in AddSlowPathInterval()
|
/art/test/004-InterfaceTest/src/ |
D | Main.java | 29 long end = System.currentTimeMillis(); in test_virtual() local 40 long end = System.currentTimeMillis(); in test_interface() local
|
/art/libartbase/base/ |
D | leb128.h | 63 const void* end, in DecodeUnsignedLeb128Checked() 150 const void* end, in DecodeSignedLeb128Checked() 277 for (uint8_t* end = EncodeUnsignedLeb128(dest, value); end < old_end; end++) { in UpdateUnsignedLeb128() local 330 void InsertBackUnsigned(It cur, It end) { in InsertBackUnsigned() 341 void InsertBackSigned(It cur, It end) { in InsertBackSigned()
|
D | stl_util.h | 43 ForwardIterator end) { in STLDeleteContainerPointers() 232 static inline IterationRange<CountIter> Range(size_t start, size_t end) { in Range() 236 static inline IterationRange<CountIter> Range(size_t end) { in Range() 284 auto end = it.end(); in Filter() local
|
D | leb128_test.cc | 117 uint8_t* end = EncodeUnsignedLeb128(encoded_data, uleb128_tests[i].decoded); in TEST() local 156 uint8_t* end = encoded_data; in TEST() local 198 uint8_t* end = EncodeSignedLeb128(encoded_data, sleb128_tests[i].decoded); in TEST() local 237 uint8_t* end = encoded_data; in TEST() local
|
D | bit_vector-inl.h | 84 inline BitVector::IndexIterator BitVector::IndexContainer::end() const { in end() function
|
D | array_ref.h | 122 iterator end() { return array_ + size_; } in end() function 123 const_iterator end() const { return array_ + size_; } in end() function
|
/art/test/449-checker-bce/src/ |
D | Main.java | 1234 void foo1(int[] array, int start, int end, boolean expectInterpreter) { in foo1() 1274 void foo2(int[] array, int start, int end, boolean expectInterpreter) { in foo2() 1314 void foo3(int[] array, int end, boolean expectInterpreter) { in foo3() 1355 void foo4(int[] array, int end, boolean expectInterpreter) { in foo4() 1404 void foo5(int[] array, int end, boolean expectInterpreter) { in foo5() 1465 void foo6(int[] array, int start, int end, boolean expectInterpreter) { in foo6() 1502 void foo7(int[] array, int start, int end, boolean lowEnd) { in foo7() 1549 void foo8(int[][] matrix, int start, int end) { in foo8() 1608 void partialLooping(int[] array, int start, int end) { in partialLooping()
|
/art/test/021-string2/src/junit/framework/ |
D | ComparisonCompactor.java | 50 int end= Math.min(fExpected.length(), fActual.length()); in findCommonPrefix() local 72 int end= Math.min(fExpected.length() - fSuffix + 1 + fContextLength, fExpected.length()); in computeCommonSuffix() local
|
/art/test/082-inline-execute/src/junit/framework/ |
D | ComparisonCompactor.java | 50 int end= Math.min(fExpected.length(), fActual.length()); in findCommonPrefix() local 72 int end= Math.min(fExpected.length() - fSuffix + 1 + fContextLength, fExpected.length()); in computeCommonSuffix() local
|
/art/runtime/gc/space/ |
D | dlmalloc_space.cc | 46 uint8_t* end, in DlMallocSpace() 79 uint8_t* end = mem_map.Begin() + starting_size; in CreateFromMemMap() local 196 uint8_t* end, in CreateInstance() 293 void DlMallocSpace::Walk(void(*callback)(void *start, void *end, size_t num_bytes, void* callback_a… in Walk() 353 static void MSpaceChunkCallback(void* start, void* end, size_t used_bytes, void* arg) { in MSpaceChunkCallback()
|
D | rosalloc_space.cc | 52 uint8_t* end, in RosAllocSpace() 95 uint8_t* end = mem_map.Begin() + starting_size; in CreateFromMemMap() local 228 uint8_t* end, in CreateInstance() 330 void RosAllocSpace::Walk(void(*callback)(void *start, void *end, size_t num_bytes, void* callback_a… in Walk() 371 void (*callback)(void *start, void *end, size_t num_bytes, void* callback_arg), in InspectAllRosAllocWithSuspendAll() 384 void RosAllocSpace::InspectAllRosAlloc(void (*callback)(void *start, void *end, size_t num_bytes, v… in InspectAllRosAlloc()
|
D | bump_pointer_space-walk-inl.h | 33 uint8_t* end = End(); in Walk() local
|
D | space.h | 288 void SetEnd(uint8_t* end) { in SetEnd() 330 uint8_t* begin, uint8_t* end, uint8_t* limit) : in ContinuousSpace() 400 uint8_t* end, in MemMapSpace() 465 uint8_t* end, in ContinuousMemMapAllocSpace()
|
/art/disassembler/ |
D | disassembler_arm.cc | 76 const uintptr_t end = reinterpret_cast<uintptr_t>(options_->end_address_); in operator <<() local 169 const uintptr_t end = reinterpret_cast<uintptr_t>(options_->end_address_); in PrintLiteral() local 247 void DisassemblerArm::Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) { in Dump()
|
/art/test/ti-agent/ |
D | ti_utf.h | 31 const char* end = utf8 + byte_count; in CountModifiedUtf8Chars() local 164 const uint16_t *end = chars + char_count; in CountUtf8Bytes() local
|
/art/runtime/gc/accounting/ |
D | card_table.cc | 108 void CardTable::ClearCardRange(uint8_t* start, uint8_t* end) { in ClearCardRange() 124 uint8_t* end = mem_map_.End(); in CheckAddrIsInCardTable() local
|
/art/test/559-bce-ssa/src/ |
D | Main.java | 19 public static void foo(int[] array, int[] array2, int start, int end) { in foo()
|
/art/runtime/ |
D | oat.cc | 39 SafeMap<std::string, std::string>::const_iterator end = variable_data->end(); in ComputeOatHeaderSize() local 341 const char* end = ptr + key_value_store_size_; in GetStoreValueByKey() local 372 const char* end = ptr + key_value_store_size_; in GetStoreKeyValuePairByIndex() local 445 SafeMap<std::string, std::string>::const_iterator end = key_value_store->end(); in Flatten() local
|
/art/test/053-wait-some/src/ |
D | Main.java | 33 long start, end; in doit() local
|
/art/tools/ahat/src/main/com/android/ahat/heapdump/ |
D | Instances.java | 74 int end = mInstances.size(); in get() local
|
/art/runtime/gc/collector/ |
D | immune_region.h | 55 void SetEnd(mirror::Object* end) { in SetEnd()
|
/art/runtime/gc/ |
D | allocation_record.cc | 59 for (auto it = entries_.rbegin(), end = entries_.rend(); it != end; ++it) { in VisitRoots() local 97 for (auto it = entries_.begin(), end = entries_.end(); it != end;) { in SweepAllocationRecords() local
|
D | heap-visit-objects-inl.h | 112 for (auto* it = allocation_stack_->Begin(), *end = allocation_stack_->End(); it < end; ++it) { in VisitObjectsInternal() local
|