/aosp_15_r20/external/sdv/vsomeip/third_party/boost/function_types/test/synthesis/ |
D | transformation.cpp | 33 BOOST_MPL_ASSERT(( is_same< func_ptr1, ft::function_pointer<func1>::type > )); 34 BOOST_MPL_ASSERT(( is_same< func_ptr1, ft::function_pointer<func_ptr1>::type > )); 35 BOOST_MPL_ASSERT(( is_same< func_ptr1, ft::function_pointer<func_ref1>::type > )); 36 BOOST_MPL_ASSERT(( is_same< func_ptr1, ft::function_pointer<mem_func_ptr1>::type > )); 59 BOOST_MPL_ASSERT(( is_same< func_ptr2, ft::function_pointer<func2>::type > )); 60 BOOST_MPL_ASSERT(( is_same< func_ptr2, ft::function_pointer<func_ptr2>::type > )); 61 BOOST_MPL_ASSERT(( is_same< func_ptr2, ft::function_pointer<func_ref2>::type > )); 62 BOOST_MPL_ASSERT(( is_same< func_ptr2, ft::function_pointer<mem_func_ptr2>::type > ));
|
D | variadic_function_synthesis.cpp | 37 ft::function_pointer<mpl::vector<int>, ft::variadic>::type, expected_v_1 * 41 ft::function_pointer<mpl::vector<int>, ft::non_variadic>::type
|
D | function_pointer.cpp | 22 is_same< ft::function_pointer< mpl::vector<int,int,int> >::type, expected >
|
/aosp_15_r20/external/cronet/base/ |
H A D | native_library_mac.mm | 24 const void* function_pointer) { 26 if (!dladdr(function_pointer, &info)) 103 void* function_pointer = nullptr; 109 function_pointer = 112 function_pointer = dlsym(library->dylib, name); 117 if (function_pointer && library->objc_status == OBJC_UNKNOWN) 118 library->objc_status = GetObjCStatusForImage(function_pointer); 120 return function_pointer;
|
/aosp_15_r20/external/clang/test/CodeGenCXX/ |
H A D | mangle-ms-return-qualifiers.cpp | 173 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()
|
H A D | mangle-ms-template-callback.cpp | 46 void function_pointer(C<void(*)(void)>) {} in function_pointer() function
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/function_types/test/custom_ccs/ |
D | nonmember_ccs_exact.cpp | 34 ft::is_callable_builtin< ft::function_pointer<mpl::vector<void>,cc>::type, cc > 42 ft::is_callable_builtin< ft::function_pointer<mpl::vector<void> >::type, dc > 50 ft::is_callable_builtin< ft::function_pointer<mpl::vector<void>,cc>::type, dc > 58 ft::is_callable_builtin< ft::function_pointer<mpl::vector<void> >::type, cc >
|
D | nonmember_ccs.cpp | 36 ft::function_pointer<mpl::vector<void,int>, cc>::type
|
/aosp_15_r20/packages/modules/Bluetooth/system/gd/rust/linux/client/src/ |
D | command_handler.rs | 78 function_pointer: CommandFunction, field 153 function_pointer: CommandHandler::cmd_adapter, in build_commands() 171 function_pointer: CommandHandler::cmd_battery, in build_commands() 179 function_pointer: CommandHandler::cmd_bond, in build_commands() 194 function_pointer: CommandHandler::cmd_device, in build_commands() 202 function_pointer: CommandHandler::cmd_discovery, in build_commands() 210 function_pointer: CommandHandler::cmd_floss, in build_commands() 255 function_pointer: CommandHandler::cmd_gatt, in build_commands() 268 function_pointer: CommandHandler::cmd_le_scan, in build_commands() 282 function_pointer: CommandHandler::cmd_advertise, in build_commands() [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/lite/experimental/acceleration/mini_benchmark/ |
H A D | runner.cc | 96 int (*function_pointer)(int argc, char** argv)) in ProcessRunner() 99 function_pointer_(reinterpret_cast<void*>(function_pointer)) {} in ProcessRunner() 326 int (*function_pointer)(int, char**) = in RunInprocess() local 328 int exit_code = __W_EXITCODE(function_pointer(argv.size(), argv.data()), 0); in RunInprocess()
|
H A D | runner.h | 58 int (*function_pointer)(int argc, char** argv));
|
/aosp_15_r20/external/mesa3d/src/gallium/frontends/vdpau/ |
H A D | device.c | 251 vlVdpGetProcAddress(VdpDevice device, VdpFuncId function_id, void **function_pointer) in vlVdpGetProcAddress() argument 257 if (!function_pointer) in vlVdpGetProcAddress() 260 if (!vlGetFuncFTAB(function_id, function_pointer)) in vlVdpGetProcAddress() 263 … VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Got proc address %p for id %d\n", *function_pointer, function_id); in vlVdpGetProcAddress()
|
/aosp_15_r20/external/pigweed/pw_function/ |
H A D | function_test.cc | 27 [[maybe_unused]] Function<int> function_pointer; variable 32 [[maybe_unused]] Function<void (*)()> function_pointer; 39 [[maybe_unused]] Function<decltype(&SomeFunction)> function_pointer; 44 [[maybe_unused]] Function<void (&)()> function_pointer;
|
/aosp_15_r20/external/libhevc/encoder/ |
H A D | ihevce_defs.h | 876 #define PAD_BUF_HOR(pu1_start, stride, ht, p_x, p_y, function_pointer) \ argument 878 function_pointer(pu1_start, stride, ht, p_x); \ 881 #define PAD_BUF_VER(pu1_start, stride, wd, p_x, p_y, function_pointer) \ argument 883 function_pointer(pu1_start, stride, wd, p_y); \
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/function_types/include/boost/function_types/ |
D | function_pointer.hpp | 20 template<typename Types, typename Tag = null_tag> struct function_pointer struct 24 BOOST_MPL_AUX_LAMBDA_SUPPORT(2,function_pointer,(Types,Tag))
|
/aosp_15_r20/external/llvm/test/Transforms/InstCombine/ |
H A D | pow-exp.ll | 36 define double @function_pointer(double ()* %fptr, double %p1) { 42 ; CHECK-LABEL: @function_pointer
|
H A D | log-pow.ll | 25 define double @function_pointer(double ()* %fptr, double %p1) { 31 ; CHECK-LABEL: @function_pointer
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/function_types/doc/ |
D | function_types.qbk | 38 …_function_pointer [link boost_functiontypes.reference.synthesis.function_pointer function_pointer]] 587 [section:function_pointer function_pointer] 590 struct function_pointer; 594 #include <boost/function_types/function_pointer.hpp> 599 [[[^function_pointer<Types,Tag>::type]][Synthesized type]]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/atomics/atomics.types.operations/atomics.types.operations.req/ |
H A D | atomic_fetch_add.verify.cpp | 46 void function_pointer() { in function_pointer() function
|
H A D | atomic_fetch_sub.verify.cpp | 46 void function_pointer() { in function_pointer() function
|
H A D | atomic_fetch_sub_explicit.verify.cpp | 49 void function_pointer() { in function_pointer() function
|
H A D | atomic_fetch_add_explicit.verify.cpp | 49 void function_pointer() { in function_pointer() function
|
/aosp_15_r20/external/deqp/external/openglcts/modules/gl/ |
H A D | gl4cGPUShaderFP64Tests.cpp | 12965 …Object(FunctionEnum function_enum, const glw::GLchar *function_name, glw::GLvoid *function_pointer, 13205 …ryBase(FunctionEnum function_enum, const glw::GLchar *function_name, glw::GLvoid *function_pointer, in unaryBase() argument 13207 : functionObject(function_enum, function_name, function_pointer, res_type) in unaryBase() 13237 …ary(FunctionEnum function_enum, const glw::GLchar *function_name, functionPointer function_pointer) in unary() argument 13238 …: unaryBase(function_enum, function_name, (glw::GLvoid *)function_pointer, typeInfo<ResT>::variabl… in unary() 13268 …ent(FunctionEnum function_enum, const glw::GLchar *function_name, functionPointer function_pointer, in unaryByComponent() argument 13270 … : unaryBase(function_enum, function_name, (glw::GLvoid *)function_pointer, res_type, arg_type) in unaryByComponent() 13302 … functionPointer function_pointer, const Utils::_variable_type res_type, in unaryWithOutputByComponent() argument 13304 … : unaryBase(function_enum, function_name, (glw::GLvoid *)function_pointer, res_type, arg_type) in unaryWithOutputByComponent() 13368 …ryBase(FunctionEnum function_enum, const glw::GLchar *function_name, glw::GLvoid *function_pointer, in binaryBase() argument [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/function_types/test/ |
D | Jamfile | 47 [ compile synthesis/function_pointer.cpp ]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/function_types/example/ |
D | interface.hpp | 121 : ft::function_pointer
|