Home
last modified time | relevance | path

Searched defs:g0 (Results 1 – 25 of 387) sorted by relevance

12345678910>>...16

/aosp_15_r20/external/mesa3d/src/intel/compiler/
H A Dtest_eu_compact.cpp223 struct brw_reg g0 = brw_vec8_grf(0, 0); in TEST_P() local
232 struct brw_reg g0 = brw_vec8_grf(0, 0); in TEST_P() local
240 struct brw_reg g0 = retype(brw_vec8_grf(0, 0), BRW_TYPE_D); in TEST_P() local
248 struct brw_reg g0 = brw_vec8_grf(0, 0); in TEST_P() local
256 struct brw_reg g0 = brw_vec1_grf(0, 0); in TEST_P() local
265 struct brw_reg g0 = brw_vec8_grf(0, 0); in TEST_P() local
280 struct brw_reg g0 = brw_vec8_grf(0, 0); in TEST_P() local
/aosp_15_r20/external/mesa3d/src/intel/compiler/elk/
H A Delk_test_eu_compact.cpp265 struct elk_reg g0 = elk_vec8_grf(0, 0); in TEST_P() local
274 struct elk_reg g0 = elk_vec8_grf(0, 0); in TEST_P() local
282 struct elk_reg g0 = retype(elk_vec8_grf(0, 0), ELK_REGISTER_TYPE_D); in TEST_P() local
290 struct elk_reg g0 = elk_vec8_grf(0, 0); in TEST_P() local
307 struct elk_reg g0 = elk_vec1_grf(0, 0); in TEST_P() local
325 struct elk_reg g0 = elk_vec8_grf(0, 0); in TEST_P() local
340 struct elk_reg g0 = elk_vec8_grf(0, 0); in TEST_P() local
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/bind/test/
Dmem_fn_derived_test.cpp41 int g0() const { g1(17); return 0; } in g0() function
101 mem_fn(&X::g0)(x); in main() local
102 mem_fn(&X::g0)(rcx); in main() local
104 mem_fn(&X::g0)(pcx); in main() local
105 mem_fn(&X::g0)(sp); in main() local
Dmem_fn_void_test.cpp41 void g0() const { g1(17); } in g0() function
97 mem_fn(&X::g0)(x); in main() local
98 mem_fn(&X::g0)(rcx); in main() local
100 mem_fn(&X::g0)(pcx); in main() local
101 mem_fn(&X::g0)(sp); in main() local
Dmem_fn_noexcept_test.cpp24 int g0() const noexcept { g1(17); return 0; } in g0() function
80 mem_fn(&X::g0)(x); in main() local
81 mem_fn(&X::g0)(rcx); in main() local
83 mem_fn(&X::g0)(pcx); in main() local
84 mem_fn(&X::g0)(sp); in main() local
Dmem_fn_test.cpp41 int g0() const { g1(17); return 0; } in g0() function
97 mem_fn(&X::g0)(x); in main() local
98 mem_fn(&X::g0)(rcx); in main() local
100 mem_fn(&X::g0)(pcx); in main() local
101 mem_fn(&X::g0)(sp); in main() local
Dmem_fn_fastcall_test.cpp51 void __fastcall g0() const { g1(17); } in g0() function
107 mem_fn(&X::g0)(x); in main() local
108 mem_fn(&X::g0)(rcx); in main() local
110 mem_fn(&X::g0)(pcx); in main() local
111 mem_fn(&X::g0)(sp); in main() local
Dmem_fn_cdecl_test.cpp51 int __cdecl g0() const { g1(17); return 0; } in g0() function
107 mem_fn(&X::g0)(x); in main() local
108 mem_fn(&X::g0)(rcx); in main() local
110 mem_fn(&X::g0)(pcx); in main() local
111 mem_fn(&X::g0)(sp); in main() local
Dmem_fn_stdcall_test.cpp51 int __stdcall g0() const { g1(17); return 0; } in g0() function
107 mem_fn(&X::g0)(x); in main() local
108 mem_fn(&X::g0)(rcx); in main() local
110 mem_fn(&X::g0)(pcx); in main() local
111 mem_fn(&X::g0)(sp); in main() local
Dbind_test.cpp236 int g0() const { g1(17); return 0; } in g0() function
270 void g0() const { g1(17); } in g0() function
308 bind(&X::g0, &x)(); in member_function_test() local
309 bind(&X::g0, x)(); in member_function_test() local
310 bind(&X::g0, ref(x))(); in member_function_test() local
398 bind(&V::g0, &v)(); in member_function_void_test() local
399 bind(&V::g0, v)(); in member_function_void_test() local
400 bind(&V::g0, ref(v))(); in member_function_void_test() local
Dbind_fastcall_mf_test.cpp42 void __fastcall g0() const { g1(17); } in g0() function
80 bind(&X::g0, &x)(); in member_function_test() local
81 bind(&X::g0, x)(); in member_function_test() local
82 bind(&X::g0, ref(x))(); in member_function_test() local
Dbind_stdcall_mf_test.cpp42 int __stdcall g0() const { g1(17); return 0; } in g0() function
80 bind(&X::g0, &x)(); in member_function_test() local
81 bind(&X::g0, x)(); in member_function_test() local
82 bind(&X::g0, ref(x))(); in member_function_test() local
Dbind_cdecl_mf_test.cpp42 int __cdecl g0() const { g1(17); return 0; } in g0() function
80 bind(&X::g0, &x)(); in member_function_test() local
81 bind(&X::g0, x)(); in member_function_test() local
82 bind(&X::g0, ref(x))(); in member_function_test() local
Dbind_noexcept_mf_test.cpp33 int g0() const noexcept { g1(17); return 0; } in g0() function
69 boost::bind(&X::g0, &x)(); in member_function_test() local
70 boost::bind(&X::g0, x)(); in member_function_test() local
71 boost::bind(&X::g0, boost::ref(x))(); in member_function_test() local
Dbind_void_mf_test.cpp38 int g0() const { g1(17); return 0; } in g0() function
85 bind<void>(&X::g0, &x)(); in member_function_test() local
86 bind<void>(&X::g0, x)(); in member_function_test() local
87 bind<void>(&X::g0, ref(x))(); in member_function_test() local
/aosp_15_r20/external/skia/src/core/
H A DSkMaskBlurFilter.cpp416 const fp88& g0, const fp88& g1, const fp88&, const fp88&, const fp88&, in blur_x_radius_1()
437 const fp88& g0, const fp88& g1, const fp88& g2, const fp88&, const fp88&, in blur_x_radius_2()
465 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()
597 fp88 g0(gauss[0]), in blur_x_rect() local
689 const fp88& g0, const fp88& g1, const fp88&, const fp88&, const fp88&, in blur_y_radius_1()
703 const fp88& g0, const fp88& g1, const fp88& g2, const fp88&, const fp88&, in blur_y_radius_2()
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()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/tests/
Diso.rs378 let mut g0 = Graph::<_, ()>::new(); in iso1() localVariable
401 let mut g0 = Graph::<_, ()>::new(); in iso2() localVariable
448 let g0 = Graph::<(), _>::from_edges(&[(0, 0, 1), (0, 1, 2), (0, 2, 3), (1, 2, 4)]); in iso_matching() localVariable
470 let g0 = str_to_digraph(include_str!("res/graph_100n_100e.txt")); in iso_100n_100e() localVariable
478 let g0 = graph_from_file("tests/res/graph_1000n_1000e.txt"); in iso_large() localVariable
488 let g0 = Graph::<(), ()>::from_edges(&[(0, 0), (0, 0), (0, 1), (1, 1), (1, 1), (1, 0)]); in iso_multigraph_failure() localVariable
497 let g0 = Graph::<(), ()>::from_edges(&[(0, 1), (1, 2), (2, 0)]); in iso_subgraph() localVariable
/aosp_15_r20/external/libyuv/unit_test/
H A Dcolor_test.cc483 int r0, g0, b0, r1, g1, b1; in TEST_F() local
533 int r0, g0, b0, r1, g1, b1, r2, g2, b2; in TEST_F() local
632 int r0, g0, b0, r1, g1, b1; in TEST_F() local
662 int r0, g0, b0, r1, g1, b1; in TEST_F() local
692 int r0, g0, b0, r1, g1, b1; in TEST_F() local
722 int r0, g0, b0, r1, g1, b1; in TEST_F() local
752 int r0, g0, b0, r1, g1, b1; in TEST_F() local
782 int r0, g0, b0, r1, g1, b1; in TEST_F() local
800 int r0, g0, b0, r1, g1, b1, r2, g2, b2; in TEST_F() local
/aosp_15_r20/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/
H A DTestDelegates.java304 JsonGenerator g0 = JSON_F.createGenerator(sw); in testGeneratorDelegate() local
365 JsonGenerator g0 = JSON_F.createGenerator(sw); in testGeneratorDelegateArrays() local
386 JsonGenerator g0 = JSON_F.createGenerator(sw); in testGeneratorDelegateComments() local
411 JsonGenerator g0 = JSON_F.createGenerator(sw); in testDelegateCopyMethods() local
455 JsonGenerator g0 = JSON_F.createGenerator(sw); in testGeneratorWithCodec() local
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/test/boost_bind_compatibility/
Dbind_test.cpp261 int g0() const { g1(17); return 0; } in g0() function
295 void g0() const { g1(17); } in g0() function
334 bind(&X::g0, &x)(); in member_function_test() local
335 bind(&X::g0, x)(); in member_function_test() local
336 bind(&X::g0, ref(x))(); in member_function_test() local
426 bind(&V::g0, &v)(); in member_function_void_test() local
427 bind(&V::g0, v)(); in member_function_void_test() local
428 bind(&V::g0, ref(v))(); in member_function_void_test() local
Dbind_void_mf_test.cpp49 int g0() const { g1(17); return 0; } in g0() function
87 bind<void>(&X::g0, &x)(); in member_function_test() local
88 bind<void>(&X::g0, x)(); in member_function_test() local
89 bind<void>(&X::g0, ref(x))(); in member_function_test() local
Dbind_cdecl_mf_test.cpp23 int __cdecl g0() const { g1(17); return 0; } in g0() function
62 bind(&X::g0, &x)(); in member_function_test() local
63 bind(&X::g0, x)(); in member_function_test() local
64 bind(&X::g0, ref(x))(); in member_function_test() local
Dbind_fastcall_mf_test.cpp43 void __fastcall g0() const { g1(17); } in g0() function
82 bind(&X::g0, &x)(); in member_function_test() local
83 bind(&X::g0, x)(); in member_function_test() local
84 bind(&X::g0, ref(x))(); in member_function_test() local
Dbind_stdcall_mf_test.cpp43 int __stdcall g0() const { g1(17); return 0; } in g0() function
84 bind(&X::g0, &x)(); in member_function_test() local
85 bind(&X::g0, x)(); in member_function_test() local
86 bind(&X::g0, ref(x))(); in member_function_test() local
Dbind_mf2_test.cpp41 int g0() const { g1(17); return 0; } in g0() function
80 bind(&X::g0, &x )(); in member_function_test() local
81 bind(&X::g0, x )(); in member_function_test() local
82 bind(&X::g0, ref(x) )(); in member_function_test() local

12345678910>>...16