HomeSort by relevance Sort by last modified time
    Searched defs:foo_ptr (Results 1 - 12 of 12) sorted by null

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
ifunc-18a.s 3 .type foo_ptr, @object
4 foo_ptr: label
ifunc-19a.s 3 .type foo_ptr, @object
4 foo_ptr: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ifunc/
ifunc-18a.s 2 .globl foo_ptr
3 .type foo_ptr, @object
4 foo_ptr: label
ifunc-19a.s 3 .type foo_ptr, @object
4 foo_ptr: label
ifunc-main.c 8 func_p foo_ptr = foo; variable
28 if (foo_ptr != foo)
30 if (foo_ptr() != 1)
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
plt-main2.c 3 func_p foo_ptr = foo; variable
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/
plt-main2.c 3 func_p foo_ptr = foo; variable
  /toolchain/binutils/binutils-2.27/gold/testsuite/
ifuncmod6.c 10 foo_p foo_ptr = foo; variable
15 return foo_ptr;
ifuncmain1.c 21 foo_p foo_ptr = foo; variable
33 if (foo_ptr != foo)
37 if ((*foo_ptr) () != -1)
ifuncmain7.c 33 foo_p foo_ptr = foo; variable
39 return foo_ptr;
66 if (foo_ptr != foo)
68 if ((*foo_ptr) () != -30)
ifuncmain1vis.c 23 foo_p foo_ptr = foo; variable
56 if (foo_ptr != foo)
58 if ((*foo_ptr) () != -30)
  /bionic/tests/
dlfcn_test.cpp 281 const char** foo_ptr = reinterpret_cast<const char**>(dlsym(handle, "foo")); local
283 ASSERT_TRUE(foo_ptr != nullptr) << dlerror();
285 ASSERT_EQ(strncmp("set", *foo_ptr, 3), 0);
295 foo_ptr = reinterpret_cast<const char**>(dlsym(handle, "foo"));
297 ASSERT_TRUE(foo_ptr != nullptr) << dlerror();
299 ASSERT_EQ(strncmp("unset", *foo_ptr, 5), 0);
313 fn_ptr foo_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo")); local
315 ASSERT_TRUE(foo_ptr != nullptr) << dlerror();
317 ASSERT_EQ(strncmp("set", foo_ptr(), 3), 0);
325 foo_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo"))
    [all...]

Completed in 712 milliseconds