Home
last modified time | relevance | path

Searched refs:function_pointer (Results 1 – 7 of 7) sorted by relevance

/external/clang/test/CodeGenCXX/
Dmangle-ms-return-qualifiers.cpp173 typedef int (*function_pointer)(int); typedef
175 function_pointer g1() { return 0; } in g1()
178 const function_pointer g2() { return 0; } in g2()
181 function_pointer* g3() { return 0; } in g3()
184 const function_pointer* g4() { return 0; } in g4()
Dmangle-ms-template-callback.cpp46 void function_pointer(C<void(*)(void)>) {} in function_pointer() function
/external/mesa3d/src/gallium/state_trackers/vdpau/
Ddevice.c179 vlVdpGetProcAddress(VdpDevice device, VdpFuncId function_id, void **function_pointer) in vlVdpGetProcAddress() argument
185 if (!function_pointer) in vlVdpGetProcAddress()
188 if (!vlGetFuncFTAB(function_id, function_pointer)) in vlVdpGetProcAddress()
191 VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Got proc adress %p for id %d\n", *function_pointer, function_id); in vlVdpGetProcAddress()
/external/llvm/test/Transforms/InstCombine/
Dpow-exp.ll36 define double @function_pointer(double ()* %fptr, double %p1) {
42 ; CHECK-LABEL: @function_pointer
Dlog-pow.ll25 define double @function_pointer(double ()* %fptr, double %p1) {
31 ; CHECK-LABEL: @function_pointer
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
Dfunctions-expected.cc49 int (*function_pointer)(int, int) = &TestFunctionThatTakesTwoInts; in F() local
/external/vixl/src/aarch64/
Dsimulator-aarch64.h1727 static void Wrapper(Simulator* simulator, uintptr_t function_pointer) { in Wrapper()
1728 R (*function)(P...) = reinterpret_cast<R (*)(P...)>(function_pointer); in Wrapper()
1736 static void Wrapper(Simulator* simulator, uintptr_t function_pointer) {
1738 reinterpret_cast<void (*)(P...)>(function_pointer);