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

  /external/compiler-rt/lib/interception/
interception_linux.cc 21 bool GetRealFunctionAddress(const char *func_name, uptr *func_addr,
23 *func_addr = (uptr)dlsym(RTLD_NEXT, func_name);
interception_linux.h 26 bool GetRealFunctionAddress(const char *func_name, uptr *func_addr,
interception_win.cc 824 static bool GetFunctionAddressInDLLs(const char *func_name, uptr *func_addr) {
825 *func_addr = 0;
827 for (size_t i = 0; *func_addr == 0 && DLLs[i]; ++i)
828 *func_addr = InternalGetProcAddress(DLLs[i], func_name);
829 return (*func_addr != 0);
  /system/core/libunwindstack/tools/
unwind_symbols.cpp 49 uint64_t func_addr; local
52 func_addr = strtoull(argv[2], &name, 16);
102 if (!elf.GetFunctionName(func_addr, &cur_name, &func_offset)) {
103 printf("No known function at 0x%" PRIx64 "\n", func_addr);
106 printf("<0x%" PRIx64 ">", func_addr - func_offset);
  /device/linaro/bootloader/arm-trusted-firmware/plat/socionext/uniphier/
uniphier_usb.c 67 uintptr_t func_addr; local
69 func_addr = uniphier_get_soc_revision() == 1 ? 0x3880 : 0x3958;
70 rom_usb_read = (__typeof(rom_usb_read))func_addr;
  /external/vixl/examples/aarch32/
disasm-a32.cc 283 uint32_t func_addr = symbol.GetAddress(); local
297 if ((func_addr & 1) == 1) {
298 func_addr &= ~1;
299 dis.SetCodeAddress(func_addr);
304 dis.SetCodeAddress(func_addr);
  /system/extras/simpleperf/scripts/
utils.py 389 """ Use addr2line to convert (dso_path, func_addr, addr) to (source_file, line) pairs.
400 1. Collect all (dso_path, func_addr, addr) requests before converting. This saves the
424 func_addr: start_addr of the function containing addr.
428 def __init__(self, func_addr):
429 self.func_addr = func_addr
446 def add_addr(self, dso_path, func_addr, addr):
451 dso.addrs[addr] = self.Addr(func_addr)
499 shifted_addr = max(addr + shift, addr_obj.func_addr)
501 if shifted_addr == addr_obj.func_addr
    [all...]
  /external/ltp/testcases/kernel/syscalls/mprotect/
mprotect04.c 142 uint64_t func_addr; member in struct:func_desc
152 fdesc.func_addr = (uint64_t)mem;
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
simple_orc_jit.cc 124 void* func_addr = CustomCallTargetRegistry::Global()->Lookup(name); local
125 if (func_addr == nullptr) {
128 llvm::JITEvaluatedSymbol symbol_info(reinterpret_cast<uint64_t>(func_addr),
  /external/valgrind/coregrind/m_gdbserver/
valgrind-low-mips32.c 214 Addr func_addr; local
232 func_addr = bpaddr - offset;
233 if (func_addr > boundary && func_addr <= bpaddr)
234 boundary = func_addr;
valgrind-low-mips64.c 215 Addr func_addr; local
233 func_addr = bpaddr - offset;
234 if (func_addr > boundary && func_addr <= bpaddr)
235 boundary = func_addr;
  /external/opencv/cxcore/src/
cxswitcher.cpp 381 for( i = 0; func_tab[i].func_addr != 0; i++ )
384 func_tab[i].default_func_addr = *func_tab[i].func_addr;
386 *func_tab[i].func_addr = func_tab[i].default_func_addr;
401 for( i = 0; func_tab[i].func_addr != 0; i++ )
450 *func_tab[i].func_addr = addr;
468 for( i = 0; func_tab[i].func_addr != 0; i++ )
  /external/clang/utils/
ClangDataFormat.py 104 func_addr = frame.GetFunction().GetStartAddress().GetFileAddress()
105 key = (func_addr, typename)
  /external/valgrind/coregrind/
vgdb-invoker-ptrace.c     [all...]
  /external/opencv/cxcore/include/
cxtypes.h 1761 void** func_addr; member in struct:CvPluginFuncInfo
    [all...]
  /external/valgrind/perf/
tinycc.c 20472 unsigned long func_addr, last_pc, pc; local
    [all...]

Completed in 298 milliseconds