| /art/runtime/gc/accounting/ |
| D | bitmap.h | 148 const uintptr_t addr = CoverBegin() + bit_index * kAlignment; in AddrFromBitIndex() local 154 ALWAYS_INLINE uintptr_t BitIndexFromAddr(uintptr_t addr) const { in BitIndexFromAddr() 159 ALWAYS_INLINE bool HasAddress(const uintptr_t addr) const { in HasAddress() 163 ALWAYS_INLINE bool Set(uintptr_t addr) { in Set() 167 ALWAYS_INLINE bool Clear(size_t addr) { in Clear() 171 ALWAYS_INLINE bool Test(size_t addr) const { in Test() 176 ALWAYS_INLINE bool AtomicTestAndSet(size_t addr) { in AtomicTestAndSet()
|
| D | space_bitmap-inl.h | 34 uintptr_t addr = reinterpret_cast<uintptr_t>(obj); in AtomicTestAndSet() local 56 uintptr_t addr = reinterpret_cast<uintptr_t>(obj); in Test() local 160 uintptr_t addr = reinterpret_cast<uintptr_t>(obj); in Modify() local
|
| D | card_table_test.cc | 69 for (const uint8_t* addr = HeapBegin(); addr != HeapLimit(); addr += CardTable::kCardSize) { in FillRandom() local 83 for (const uint8_t* addr = HeapBegin(); addr < HeapLimit(); addr += kObjectAlignment) { in TEST_F() local
|
| D | mod_union_table.cc | 508 for (uint8_t* addr = space_->Begin(); addr < AlignUp(space_->End(), CardTable::kCardSize); in Dump() local 520 for (uint8_t* addr = space_->Begin(); addr < AlignUp(space_->End(), CardTable::kCardSize); in SetCards() local 526 bool ModUnionTableCardCache::ContainsCardFor(uintptr_t addr) { in ContainsCardFor() 531 for (uint8_t* addr = space_->Begin(); addr < AlignUp(space_->End(), CardTable::kCardSize); in SetCards() local 537 bool ModUnionTableReferenceCache::ContainsCardFor(uintptr_t addr) { in ContainsCardFor()
|
| D | card_table.h | 59 ALWAYS_INLINE void MarkCard(const void *addr) { in MarkCard()
|
| D | card_table-inl.h | 219 inline uint8_t* CardTable::CardFromAddr(const void *addr) const { in CardFromAddr()
|
| D | atomic_stack.h | 245 uint8_t* addr = mem_map_->Begin(); in Init() local
|
| /art/runtime/ |
| D | atomic.cc | 26 Mutex* QuasiAtomic::GetSwapMutex(const volatile int64_t* addr) { in GetSwapMutex() 46 int64_t QuasiAtomic::SwapMutexRead64(volatile const int64_t* addr) { in SwapMutexRead64() 51 void QuasiAtomic::SwapMutexWrite64(volatile int64_t* addr, int64_t value) { in SwapMutexWrite64() 57 bool QuasiAtomic::SwapMutexCas64(int64_t old_value, int64_t new_value, volatile int64_t* addr) { in SwapMutexCas64()
|
| D | atomic.h | 59 static int64_t Read64(volatile const int64_t* addr) { in Read64() 95 static void Write64(volatile int64_t* addr, int64_t value) { in Write64() 141 static bool Cas64(int64_t old_value, int64_t new_value, volatile int64_t* addr) { in Cas64()
|
| D | mem_map.h | 166 bool HasAddress(const void* addr) const { in HasAddress()
|
| D | mem_map.cc | 362 MemMap* MemMap::MapDummy(const char* name, uint8_t* addr, size_t byte_count) { in MapDummy() 767 void* MemMap::MapInternal(void* addr, in MapInternal()
|
| D | art_method.h | 757 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value(); in GetNativePointer() local 770 const auto addr = reinterpret_cast<uintptr_t>(this) + offset.Uint32Value(); in SetNativePointer() local
|
| D | dex_file.h | 721 const uint8_t* addr = begin_ + class_def.interfaces_off_; in GetInterfacesList() local 741 const uint8_t* addr = begin_ + code_off; in GetCodeItem() local 794 const uint8_t* addr = begin_ + proto_id.parameters_off_; in GetProtoParameters() local 909 const uint8_t* addr = reinterpret_cast<const uint8_t*>(&anno_dir[1]); in GetMethodAnnotations() local 921 const uint8_t* addr = reinterpret_cast<const uint8_t*>(&anno_dir[1]); in GetParameterAnnotations() local
|
| /art/runtime/jdwp/ |
| D | jdwp_socket.cc | 140 } addr; in SocketStartup() local 215 } addr; in Accept() local 267 } addr; in Establish() local 455 } addr; in ProcessIncoming() local
|
| /art/tools/dexfuzz/src/dexfuzz/rawdex/ |
| D | EncodedTypeAddrPair.java | 23 public int addr; field in EncodedTypeAddrPair
|
| /art/tools/ahat/src/ |
| D | Main.java | 74 InetSocketAddress addr = new InetSocketAddress(loopback, port); in main() local
|
| /art/compiler/linker/arm/ |
| D | relative_patcher_thumb2.cc | 99 uint8_t* addr = &(*code)[offset]; in SetInsn32() local 109 const uint8_t* addr = &code[offset]; in GetInsn32() local
|
| /art/runtime/base/ |
| D | hex_dump.cc | 36 const unsigned char* addr = reinterpret_cast<const unsigned char*>(address_); in Dump() local
|
| D | scoped_arena_allocator.h | 138 void* addr = arena_stack->Alloc(sizeof(ScopedArenaAllocator), kArenaAllocMisc); in Create() local
|
| /art/compiler/linker/arm64/ |
| D | relative_patcher_arm64.cc | 331 uint8_t* addr = &(*code)[offset]; in SetInsn() local 341 const uint8_t* addr = &code[offset]; in GetInsn() local
|
| /art/compiler/utils/x86/ |
| D | assembler_x86.h | 191 static Address Absolute(uintptr_t addr) { in Absolute() 198 static Address Absolute(ThreadOffset<4> addr) { in Absolute()
|
| /art/runtime/gc/allocator/ |
| D | rosalloc.h | 608 size_t ToPageMapIndex(const void* addr) const { in ToPageMapIndex() 616 size_t RoundDownToPageMapIndex(const void* addr) const { in RoundDownToPageMapIndex()
|
| /art/runtime/openjdkjvm/ |
| D | OpenjdkJvm.cc | 253 JNIEXPORT jint JVM_GetSockName(jint fd, struct sockaddr* addr, int* addrlen) { in JVM_GetSockName() 281 JNIEXPORT jint JVM_Connect(jint fd, struct sockaddr* addr, jint addrlen) { in JVM_Connect()
|
| /art/compiler/ |
| D | elf_builder.h | 360 Elf_Addr addr, in Add() 377 Elf_Addr addr, in Add()
|
| /art/compiler/utils/arm/ |
| D | assembler_arm32.cc | 609 const Address& addr = static_cast<const Address&>(ad); in EmitMemOp() local 647 const Address& addr = static_cast<const Address&>(ad); in EmitMemOpAddressMode3() local 1036 const Address& addr = static_cast<const Address&>(ad); in vldrs() local 1049 const Address& addr = static_cast<const Address&>(ad); in vstrs() local 1063 const Address& addr = static_cast<const Address&>(ad); in vldrd() local 1076 const Address& addr = static_cast<const Address&>(ad); in vstrd() local
|