HomeSort by relevance Sort by last modified time
    Searched refs:ART_BASE_ADDRESS (Results 1 - 6 of 6) sorted by null

  /art/compiler/
image_test.cc 97 const uintptr_t requested_image_base = ART_BASE_ADDRESS;
197 uint32_t image_begin = ART_BASE_ADDRESS;
201 uint32_t image_roots = ART_BASE_ADDRESS + (1 * KB);
203 uint32_t oat_file_begin = ART_BASE_ADDRESS + (4 * KB); // page aligned
204 uint32_t oat_data_begin = ART_BASE_ADDRESS + (8 * KB); // page aligned
205 uint32_t oat_data_end = ART_BASE_ADDRESS + (9 * KB);
206 uint32_t oat_file_end = ART_BASE_ADDRESS + (10 * KB);
elf_writer_test.cc 40 EXPECT_LT(static_cast<uintptr_t>(ART_BASE_ADDRESS), reinterpret_cast<uintptr_t>(addr)); \
common_compiler_test.cc 404 reinterpret_cast<byte*>(ART_BASE_ADDRESS),
  /art/runtime/
mem_map_test.cc 109 EXPECT_LT(start, static_cast<uintptr_t>(ART_BASE_ADDRESS));
119 // Even on max, should be below ART_BASE_ADDRESS.
120 EXPECT_LT(CreateStartPos(~0), static_cast<uintptr_t>(ART_BASE_ADDRESS));
168 reinterpret_cast<byte*>(ART_BASE_ADDRESS),
175 ASSERT_TRUE(map0->BaseBegin() == reinterpret_cast<void*>(ART_BASE_ADDRESS));
208 uintptr_t start_addr = ART_BASE_ADDRESS + 0x1000000;
mem_map.cc 104 CHECK_NE(0, ART_BASE_ADDRESS);
106 // Start with all bits below highest bit in ART_BASE_ADDRESS.
107 constexpr size_t leading_zeros = CLZ(static_cast<uint32_t>(ART_BASE_ADDRESS));
  /art/runtime/gc/space/
image_space.cc 181 << "art base address of 0x" << std::hex << ART_BASE_ADDRESS;
182 arg_vector.push_back(StringPrintf("--base=0x%x", ART_BASE_ADDRESS + base_offset));
    [all...]

Completed in 544 milliseconds