Home
last modified time | relevance | path

Searched defs:g3 (Results 1 – 25 of 213) sorted by relevance

123456789

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/test/boost_bind_compatibility/
Dbind_test.cpp270 int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function
304 void g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); } in g3() function
361 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
362 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local
363 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
453 bind(&V::g3, &v, 1, 2, 3)(); in member_function_void_test() local
454 bind(&V::g3, v, 1, 2, 3)(); in member_function_void_test() local
455 bind(&V::g3, ref(v), 1, 2, 3)(); in member_function_void_test() local
Dbind_void_mf_test.cpp58 int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function
114 bind<void>(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
115 bind<void>(&X::g3, x, 1, 2, 3)(); in member_function_test() local
116 bind<void>(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
Dbind_cdecl_mf_test.cpp32 int __cdecl g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function
89 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
90 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local
91 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
Dbind_fastcall_mf_test.cpp52 void __fastcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); } in g3() function
109 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
110 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local
111 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
Dbind_stdcall_mf_test.cpp52 int __stdcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function
111 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
112 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local
113 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
Dbind_mf2_test.cpp50 int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function
107 bind(&X::g3, &x, 1, 2, 3 )(); in member_function_test() local
108 bind(&X::g3, x, 1, 2, 3 )(); in member_function_test() local
109 bind(&X::g3, ref(x), 1, 2, 3 )(); in member_function_test() local
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/bind/test/
Dbind_test.cpp245 int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function
279 void g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); } in g3() function
335 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
336 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local
337 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
425 bind(&V::g3, &v, 1, 2, 3)(); in member_function_void_test() local
426 bind(&V::g3, v, 1, 2, 3)(); in member_function_void_test() local
427 bind(&V::g3, ref(v), 1, 2, 3)(); in member_function_void_test() local
Dbind_fastcall_mf_test.cpp51 void __fastcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); } in g3() function
107 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
108 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local
109 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
Dbind_stdcall_mf_test.cpp51 int __stdcall g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function
107 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
108 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local
109 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
Dbind_cdecl_mf_test.cpp51 int __cdecl g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function
107 bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
108 bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local
109 bind(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
Dbind_noexcept_mf_test.cpp42 int g3(int a1, int a2, int a3) const noexcept { g2(a1, a2); g1(a3); return 0; } in g3() function
96 boost::bind(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
97 boost::bind(&X::g3, x, 1, 2, 3)(); in member_function_test() local
98 boost::bind(&X::g3, boost::ref(x), 1, 2, 3)(); in member_function_test() local
Dbind_void_mf_test.cpp50 int g3(int a1, int a2, int a3) const { g2(a1, a2); g1(a3); return 0; } in g3() function
118 bind<void>(&X::g3, &x, 1, 2, 3)(); in member_function_test() local
119 bind<void>(&X::g3, x, 1, 2, 3)(); in member_function_test() local
120 bind<void>(&X::g3, ref(x), 1, 2, 3)(); in member_function_test() local
/aosp_15_r20/external/skia/src/core/
H A DSkMaskBlurFilter.cpp465 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88&, in blur_x_radius_3()
502 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_x_radius_4()
550 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_row()
600 g3(gauss[3]), in blur_x_rect() local
720 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88&, in blur_y_radius_3()
740 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_y_radius_4()
767 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_column()
813 g3(gauss[3]), in blur_y_rect() local
/aosp_15_r20/external/clang/test/Sema/
H A Dbitfield-layout.c138 struct __attribute__((packed)) g3 { struct
144 CHECK_ALIGN(struct, g3, 16); argument
H A Dprivate-extern.c13 int g3; // expected-note{{previous definition}} variable
14 static int g3; // expected-error{{static declaration of 'g3' follows non-static declaration}} variable
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
Dcodecapi.h10 # define DEFINE_CODECAPI_GUID(name, guidstr, g1,g2,g3,g4,g5,g6,g7,g8,g9,g10,g11) \ argument
23 # define DEFINE_CODECAPI_GUID(name, guidstr, g1,g2,g3,g4,g5,g6,g7,g8,g9,g10,g11) \ argument
28 # define DEFINE_CODECAPI_GUID(name, guidstr, g1,g2,g3,g4,g5,g6,g7,g8,g9,g10,g11) DEFINE_GUIDSTRU… argument
/aosp_15_r20/external/llvm/test/MC/COFF/
H A Dcross-section-relative.s16 .globl g3 # @g3 symbol
18 g3: label
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dfunction-pointer-arguments.cpp12 int(*g3)(volatile int, int) = f1; in good() local
26 int (*g3)(char, int) = f1; in bad() local
/aosp_15_r20/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dassign.pass.cpp67 char g1, g2, g3, p1, p3; in main() local
75 wchar_t g1, g2, g3, p1, p3; in main() local
H A Dswap.pass.cpp76 char g1, g2, g3, p1, p3; in main() local
84 wchar_t g1, g2, g3, p1, p3; in main() local
/aosp_15_r20/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
H A Dcopy.pass.cpp64 char g1, g2, g3, p1, p3; in main() local
71 wchar_t g1, g2, g3, p1, p3; in main() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dassign.pass.cpp62 char g1, g2, g3, p1, p3; in main() local
76 wchar_t g1, g2, g3, p1, p3; in main() local
H A Dswap.pass.cpp71 char g1, g2, g3, p1, p3; in main() local
85 wchar_t g1, g2, g3, p1, p3; in main() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
H A Dcopy.pass.cpp60 char g1, g2, g3, p1, p3; in main() local
68 wchar_t g1, g2, g3, p1, p3; in main() local
/aosp_15_r20/external/ltp/testcases/network/multicast/mc_member/
H A Dmc_member_test.c112 unsigned g1, g2, g3, g4; in join_group() local
147 unsigned g1, g2, g3, g4; in leave_group() local

123456789