Home
last modified time | relevance | path

Searched refs:address (Results 1 – 25 of 167) sorted by relevance

1234567

/ndk/sources/cxx-stl/gabi++/include/
Dgabixx_config.h82 #define __gabixx_sync_load(address) \ argument
83 __sync_fetch_and_add((address), (__typeof__(*(address)))0)
90 # define __gabixx_sync_swap(address,value) __sync_swap((address),(value)) argument
92 # define __gabixx_sync_swap(address, value) \ argument
94 __typeof__(*(address)) __ret = __sync_lock_test_and_set((address),(value)); \
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
Daligned_storage.hpp57 void* address() const { return const_cast<aligned_storage_imp*>(this); } in address() function
64 void* address() const { return 0; } in address() function
130 void* address() in address() function in boost::aligned_storage
132 return static_cast<type*>(this)->address(); in address()
137 const void* address() const in address() function in boost::aligned_storage
139 return static_cast<const type*>(this)->address(); in address()
144 const void* address() const;
156 const void* aligned_storage<S,A>::address() const in address() function in boost::aligned_storage
158 return const_cast< aligned_storage<S,A>* >(this)->address(); in address()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
Din_place_factory.hpp51 void* apply(void* address
54 return new(address) T( BOOST_PP_ENUM_PARAMS(N, m_a) );
58 void* apply(void* address, std::size_t n
61 for(char* next = address = this->BOOST_NESTED_TEMPLATE apply<T>(address);
64 return address;
/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_proc_maps_unittest.cpp72 uintptr_t address; in TEST() member
88 void* address = reinterpret_cast<void*>(kData[n].address); in TEST() local
89 TEST_TEXT << minitest::Format("Checking address %p", address); in TEST()
90 EXPECT_EQ(kData[n].success, FindProtectionFlagsForAddress(address, &prot)); in TEST()
92 TEST_TEXT << minitest::Format("Checking address %p", address); in TEST()
102 uintptr_t address; in TEST() member
112 uintptr_t address, offset; in TEST() local
114 bool success = FindLoadAddressForFile(kData[n].name, &address, &offset); in TEST()
118 EXPECT_EQ(kData[n].address, address); in TEST()
Dcrazy_linker_proc_maps.h49 int GetProtectionFlagsForAddress(void* address);
58 bool FindElfBinaryForAddress(void* address,
65 bool FindProtectionFlagsForAddress(void* address, int* prot_flags);
Dcrazy_linker_wrappers.cpp165 int WrapDladdr(void* address, Dl_info* info) { in WrapDladdr() argument
170 LibraryView* wrap = lib_list->FindLibraryForAddress(address); in WrapDladdr()
181 address, &info->dli_sname, &info->dli_saddr, &sym_size); in WrapDladdr()
187 int ret = ::dladdr(address, info); in WrapDladdr()
255 void* address; in WrapLinkerSymbol() member
272 return kSymbols[n].address; in WrapLinkerSymbol()
Dcrazy_linker_memory_mapping.h37 bool Allocate(void* address, size_t size, Protection prot, int fd) { in Allocate() argument
39 if (address) in Allocate()
43 map_ = ::mmap(address, size_, static_cast<int>(prot), flags, fd, 0); in Allocate()
Dcrazy_linker_proc_maps.cpp203 int ProcMaps::GetProtectionFlagsForAddress(void* address) { in GetProtectionFlagsForAddress() argument
204 size_t vma_addr = reinterpret_cast<size_t>(address); in GetProtectionFlagsForAddress()
214 bool FindElfBinaryForAddress(void* address, in FindElfBinaryForAddress() argument
221 uintptr_t addr = reinterpret_cast<uintptr_t>(address); in FindElfBinaryForAddress()
244 bool FindProtectionFlagsForAddress(void* address, int* prot_flags) { in FindProtectionFlagsForAddress() argument
248 uintptr_t addr = reinterpret_cast<uintptr_t>(address); in FindProtectionFlagsForAddress()
Dcrazy_linker_shared_library.cpp103 void* address = WrapLinkerSymbol(symbol_name); in Lookup() local
104 if (address) in Lookup()
105 return address; in Lookup()
113 address = ::dlsym(wrap->GetSystem(), symbol_name); in Lookup()
126 if (!address && in Lookup()
129 address = ::dlsym(wrap->GetSystem(), "__isnanf"); in Lookup()
131 if (address) in Lookup()
132 return address; in Lookup()
Dcrazy_linker_shared_library.h77 bool ContainsAddress(void* address) const { in ContainsAddress() argument
78 size_t addr = reinterpret_cast<size_t>(address); in ContainsAddress()
95 bool FindNearestSymbolForAddress(void* address, in FindNearestSymbolForAddress() argument
100 address, load_bias(), sym_name, sym_addr, sym_size); in FindNearestSymbolForAddress()
Dcrazy_linker_elf_symbols.cpp63 const ELF::Sym* ElfSymbols::LookupByAddress(void* address, in LookupByAddress() argument
66 reinterpret_cast<ELF::Addr>(address) - static_cast<ELF::Addr>(load_bias); in LookupByAddress()
78 bool ElfSymbols::LookupNearestByAddress(void* address, in LookupNearestByAddress() argument
84 reinterpret_cast<ELF::Addr>(address) - static_cast<ELF::Addr>(load_bias); in LookupNearestByAddress()
Dcrazy_linker_elf_symbols.h31 const ELF::Sym* LookupByAddress(void* address, size_t load_bias) const;
52 bool LookupNearestByAddress(void* address,
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dconfig.h38 # define __sync_swap(address, value) \ argument
40 __typeof__(*(address)) __ret = __sync_lock_test_and_set((address),(value)); \
/ndk/sources/host-tools/sed-4.2.1/lib/
Dalloca.c343 i00afunc (long *address) in i00afunc() argument
378 if ((block <= address) && (address < (block + size))) in i00afunc()
385 result = address - block; in i00afunc()
417 i00afunc (long address) in i00afunc() argument
452 while (!(this_segment <= address && address <= stkl)) in i00afunc()
455 fprintf (stderr, "%011o %011o %011o\n", this_segment, address, stkl); in i00afunc()
466 result = address - this_segment; in i00afunc()
/ndk/sources/host-tools/make-3.81/
Dalloca.c355 i00afunc (long *address) in i00afunc() argument
390 if ((block <= address) && (address < (block + size))) in i00afunc()
397 result = address - block; in i00afunc()
429 i00afunc (long address) in i00afunc() argument
464 while (!(this_segment <= address && address <= stkl)) in i00afunc()
467 fprintf (stderr, "%011o %011o %011o\n", this_segment, address, stkl); in i00afunc()
478 result = address - this_segment; in i00afunc()
/ndk/sources/host-tools/ndk-stack/elff/
Ddwarf_die.cc101 DIEObject* DIEObject::get_leaf_for_address(Elf_Xword address) { in get_leaf_for_address() argument
103 contains_address<Elf_Xword>(address) : in get_leaf_for_address()
104 contains_address<Elf_Word>(address); in get_leaf_for_address()
119 DIEObject* leaf = child->get_leaf_for_address(address); in get_leaf_for_address()
130 bool DIEObject::contains_address(Elf_Xword address) { in contains_address() argument
144 if (address >= low && address < high) { in contains_address()
157 address < low_pc.value()->u64 || in contains_address()
158 address >= high_pc.value()->u64) { in contains_address()
Ddwarf_cu.cc468 Elf_Xword address, in get_pc_address_file_info() argument
512 address >= prev_address && address < state.address_) { in get_pc_address_file_info()
514 } else if (address == state.address_) { in get_pc_address_file_info()
563 address >= prev_address && address < state.address_) { in get_pc_address_file_info()
565 } else if (address == state.address_) { in get_pc_address_file_info()
623 address >= prev_address && address < state.address_) { in get_pc_address_file_info()
625 } else if (address == state.address_) { in get_pc_address_file_info()
638 address >= prev_address && address < state.address_) { in get_pc_address_file_info()
640 } else if (address == state.address_) { in get_pc_address_file_info()
684 address >= prev_address && address < state.address_) { in get_pc_address_file_info()
[all …]
Delff_api.cc54 uint64_t address, in elff_get_pc_address_info() argument
63 if (reinterpret_cast<ElfFile*>(handle)->get_pc_address_info(address, in elff_get_pc_address_info()
Ddwarf_die.h80 DIEObject* get_leaf_for_address(Elf_Xword address);
108 bool contains_address(Elf_Xword address);
Ddwarf_cu.h217 DIEObject* get_leaf_die_for_address(Elf_Xword address) const { in get_leaf_die_for_address() argument
218 return cu_die_->get_leaf_for_address(address); in get_leaf_die_for_address()
267 virtual bool get_pc_address_file_info(Elf_Xword address,
353 bool get_pc_address_file_info(Elf_Xword address, Dwarf_AddressInfo* info);
/ndk/tests/standalone/init-fini-arrays/
DREADME4 - The address of functions with __attribute__((constructor)) are placed in
7 - The address of functions with __attribute__((destructor)) are placed in
10 - The address of static C++ constructors are placed in the .init_array
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
Daddress.pass.cpp25 assert(a.address(*tp) == tp); in test_address()
26 assert(a.address(*ctp) == tp); in test_address()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/optional/
Doptional.hpp102 inline void construct(Factory const& factory, void* address) in construct() argument
104 factory.BOOST_NESTED_TEMPLATE apply<T>(address); in construct()
142 void const* address() const { return &dummy_; } in address() function in boost::optional_detail::aligned_storage
143 void * address() { return &dummy_; } in address() function in boost::optional_detail::aligned_storage
145 void const* address() const { return dummy_.data; }
146 void * address() { return dummy_.data; }
346 new (m_storage.address()) internal_type(val) ; in construct()
356 boost_optional_detail::construct<value_type>(factory, m_storage.address()); in construct()
365 factory.apply(m_storage.address()) ; in construct()
392 new (m_storage.address()) internal_type(expr) ; in construct()
[all …]
/ndk/sources/android/crazy_linker/include/
Dcrazy_linker.h106 void* address) _CRAZY_PUBLIC;
293 void* address,
320 void* address,
/ndk/sources/host-tools/ndk-stack/
Dndk-stack-parser.c317 uint64_t address; in ParseFrame() local
346 address = strtoul(pc_address, &eptr, 16); in ParseFrame()
387 (void)address; in ParseFrame()
405 if (!elff_get_pc_address_info(elff_handle, address, &pc_info)) { in ParseFrame()
420 (uint32_t)address, sym_file); in ParseFrame()

1234567