Home
last modified time | relevance | path

Searched defs:g4 (Results 1 – 25 of 88) sorted by relevance

1234

/external/llvm/test/MC/COFF/
Dcross-section-relative.s21 .globl g4 # @g4 symbol
23 g4: label
/external/clang/test/SemaCXX/
Dfunction-pointer-arguments.cpp13 int(*g4)(int, int) = f2; in good() local
28 int (*g4)(int, char) = f1; in bad() local
/external/sdv/vsomeip/third_party/boost/phoenix/test/boost_bind_compatibility/
Dbind_void_mf_test.cpp61 int g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4() function
123 bind<void>(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
124 bind<void>(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
125 bind<void>(&X::g4, ref(x), 1, 2, 3, 4)(); in member_function_test() local
Dbind_fastcall_mf_test.cpp55 void __fastcall g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); } in g4() function
118 bind(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
119 bind(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
120 bind(&X::g4, ref(x), 1, 2, 3, 4)(); in member_function_test() local
Dbind_stdcall_mf_test.cpp55 int __stdcall g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4() function
120 bind(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
121 bind(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
122 bind(&X::g4, ref(x), 1, 2, 3, 4)(); in member_function_test() local
Dbind_cdecl_mf_test.cpp35 int __cdecl g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4() function
98 bind(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
99 bind(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
100 bind(&X::g4, ref(x), 1, 2, 3, 4)(); in member_function_test() local
Dbind_mf2_test.cpp53 int g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4() function
116 bind(&X::g4, &x, 1, 2, 3, 4 )(); in member_function_test() local
117 bind(&X::g4, x, 1, 2, 3, 4 )(); in member_function_test() local
118 bind(&X::g4, ref(x), 1, 2, 3, 4 )(); in member_function_test() local
Dbind_test.cpp273 int g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4() function
307 void g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); } in g4() function
370 bind(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
371 bind(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
372 bind(&X::g4, ref(x), 1, 2, 3, 4)(); in member_function_test() local
462 bind(&V::g4, &v, 1, 2, 3, 4)(); in member_function_void_test() local
463 bind(&V::g4, v, 1, 2, 3, 4)(); in member_function_void_test() local
464 bind(&V::g4, ref(v), 1, 2, 3, 4)(); in member_function_void_test() local
/external/sdv/vsomeip/third_party/boost/bind/test/
Dbind_stdcall_mf_test.cpp54 int __stdcall g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4() function
116 bind(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
117 bind(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
118 bind(&X::g4, ref(x), 1, 2, 3, 4)(); in member_function_test() local
Dbind_noexcept_mf_test.cpp45 int g4(int a1, int a2, int a3, int a4) const noexcept { g3(a1, a2, a3); g1(a4); return 0; } in g4() function
105 boost::bind(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
106 boost::bind(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
107 boost::bind(&X::g4, boost::ref(x), 1, 2, 3, 4)(); in member_function_test() local
Dbind_cdecl_mf_test.cpp54 int __cdecl g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4() function
116 bind(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
117 bind(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
118 bind(&X::g4, ref(x), 1, 2, 3, 4)(); in member_function_test() local
Dbind_fastcall_mf_test.cpp54 void __fastcall g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); } in g4() function
116 bind(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
117 bind(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
118 bind(&X::g4, ref(x), 1, 2, 3, 4)(); in member_function_test() local
Dbind_void_mf_test.cpp54 int g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4() function
129 bind<void>(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
130 bind<void>(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
131 bind<void>(&X::g4, ref(x), 1, 2, 3, 4)(); in member_function_test() local
Dbind_test.cpp248 int g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); return 0; } in g4() function
282 void g4(int a1, int a2, int a3, int a4) const { g3(a1, a2, a3); g1(a4); } in g4() function
344 bind(&X::g4, &x, 1, 2, 3, 4)(); in member_function_test() local
345 bind(&X::g4, x, 1, 2, 3, 4)(); in member_function_test() local
346 bind(&X::g4, ref(x), 1, 2, 3, 4)(); in member_function_test() local
434 bind(&V::g4, &v, 1, 2, 3, 4)(); in member_function_void_test() local
435 bind(&V::g4, v, 1, 2, 3, 4)(); in member_function_void_test() local
436 bind(&V::g4, ref(v), 1, 2, 3, 4)(); in member_function_void_test() local
/external/mesa3d/src/intel/compiler/elk/
Delk_test_eu_compact.cpp267 struct elk_reg g4 = elk_vec8_grf(4, 0); in TEST_P() local
300 struct elk_reg g4 = elk_vec8_grf(4, 0); in TEST_P() local
309 struct elk_reg g4 = elk_vec1_grf(4, 0); in TEST_P() local
318 struct elk_reg g4 = elk_vec8_grf(4, 0); in TEST_P() local
/external/ltp/testcases/network/multicast/mc_member/
Dmc_member_test.c112 unsigned g1, g2, g3, g4; in join_group() local
147 unsigned g1, g2, g3, g4; in leave_group() local
/external/clang/test/CodeGenCXX/
Dmangle-literal-suffix.cpp8 template <class T> void g4(char (&buffer)[sizeof(T() + 5.0L)]) {} in g4() function
Dcxx11-exception-spec.cpp95 void (*g4)() = &S<double>::g; in i() local
/external/clang/test/Sema/
Dconstant-builtins.c10 double g4 = __builtin_inff(); variable
Dbitfield-layout.c153 struct __attribute__((packed)) g4 { struct
159 CHECK_SIZE(struct, g4, 4); argument
Dattr-alias-elf.c15 void g4() {} in g4() function
/external/mesa3d/src/intel/compiler/
Dtest_eu_compact.cpp227 struct brw_reg g4 = brw_vec8_grf(4, 0); in TEST_P() local
260 struct brw_reg g4 = brw_vec1_grf(4, 0); in TEST_P() local
/external/ltp/testcases/network/multicast/mc_commo/
Dmc_recv.c28 unsigned i1, i2, i3, i4, g1, g2, g3, g4; in main() local
Dmc_send.c23 unsigned i1, i2, i3, i4, g1, g2, g3, g4; in main() local
/external/skia/src/core/
DSkMaskBlurFilter.cpp512 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_x_radius_4()
560 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_row()
611 g4(gauss[4]); in blur_x_rect() local
750 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_y_radius_4()
777 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_column()
824 g4(gauss[4]); in blur_y_rect() local

1234