Home
last modified time | relevance | path

Searched defs:g1 (Results 1 – 25 of 290) sorted by relevance

12345678910>>...12

/external/python/cpython3/Lib/test/
Dtest_yield_from.py26 def g1(): function
49 def g1(): function
80 def g1(): function
109 def g1(): function
146 def g1(): function
190 def g1(): function
231 def g1(): function
265 def g1(): function
306 def g1(): function
368 def g1(): function
[all …]
/external/clang/test/CXX/expr/
Dp10-0x.cpp3 volatile int g1; variable
16 __extension__ g1; in f1() local
/external/rust/android-crates-io/crates/petgraph/tests/
Diso.rs379 let mut g1 = Graph::<_, ()>::new(); in iso1() localVariable
402 let mut g1 = Graph::<_, ()>::new(); in iso2() localVariable
450 let mut g1 = g0.clone(); in iso_matching() localVariable
471 let g1 = str_to_digraph(include_str!("res/graph_100n_100e_iso.txt")); in iso_100n_100e() localVariable
479 let g1 = graph_from_file("tests/res/graph_1000n_1000e.txt"); in iso_large() localVariable
490 let g1 = Graph::<(), ()>::from_edges(&[(0, 0), (0, 1), (0, 1), (1, 1), (1, 0), (1, 0)]); in iso_multigraph_failure() localVariable
498 let g1 = Graph::<(), ()>::from_edges(&[(0, 1), (1, 2), (2, 0), (2, 3), (0, 4)]); in iso_subgraph() localVariable
/external/llvm/test/MC/COFF/
Dcross-section-relative.s6 .globl g1 # @g1 symbol
8 g1: label
/external/pytorch/aten/src/ATen/test/
Dtest_thread_pool_guard.cpp11 caffe2::_NoPThreadPoolGuard g1; in TEST() local
39 caffe2::_NoPThreadPoolGuard g1; in TEST() local
/external/clang/test/SemaCXX/
Dfunction-pointer-arguments.cpp10 int(*g1)(int, int) = f1; in good() local
21 void (*g1)(int, int) = f1; in bad() local
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/ec/endo/
DScalarSplitParameters.java20 protected final BigInteger g1, g2; field in ScalarSplitParameters
23 public ScalarSplitParameters(BigInteger[] v1, BigInteger[] v2, BigInteger g1, in ScalarSplitParameters()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/
DScalarSplitParameters.java16 protected final BigInteger g1, g2; field in ScalarSplitParameters
19 public ScalarSplitParameters(BigInteger[] v1, BigInteger[] v2, BigInteger g1, in ScalarSplitParameters()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/endo/
DScalarSplitParameters.java20 protected final BigInteger g1, g2; field in ScalarSplitParameters
23 public ScalarSplitParameters(BigInteger[] v1, BigInteger[] v2, BigInteger g1, in ScalarSplitParameters()
/external/sdv/vsomeip/third_party/boost/phoenix/test/boost_bind_compatibility/
Dbind_void_mf_test.cpp52 int g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; return 0; } in g1() function
96 bind<void>(&X::g1, &x, 1)(); in member_function_test() local
97 bind<void>(&X::g1, x, 1)(); in member_function_test() local
98 bind<void>(&X::g1, ref(x), 1)(); in member_function_test() local
Dbind_fastcall_mf_test.cpp46 void __fastcall g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; } in g1() function
91 bind(&X::g1, &x, 1)(); in member_function_test() local
92 bind(&X::g1, x, 1)(); in member_function_test() local
93 bind(&X::g1, ref(x), 1)(); in member_function_test() local
Dbind_stdcall_mf_test.cpp46 int __stdcall g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; return 0; } in g1() function
93 bind(&X::g1, &x, 1)(); in member_function_test() local
94 bind(&X::g1, x, 1)(); in member_function_test() local
95 bind(&X::g1, ref(x), 1)(); in member_function_test() local
Dbind_cdecl_mf_test.cpp26 int __cdecl g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; return 0; } in g1() function
71 bind(&X::g1, &x, 1)(); in member_function_test() local
72 bind(&X::g1, x, 1)(); in member_function_test() local
73 bind(&X::g1, ref(x), 1)(); in member_function_test() local
Dbind_mf2_test.cpp44 int g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; return 0; } in g1() function
89 bind(&X::g1, &x, 1 )(); in member_function_test() local
90 bind(&X::g1, x, 1 )(); in member_function_test() local
91 bind(&X::g1, ref(x), 1 )(); in member_function_test() local
/external/sdv/vsomeip/third_party/boost/bind/test/
Dbind_stdcall_mf_test.cpp45 int __stdcall g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; return 0; } in g1() function
89 bind(&X::g1, &x, 1)(); in member_function_test() local
90 bind(&X::g1, x, 1)(); in member_function_test() local
91 bind(&X::g1, ref(x), 1)(); in member_function_test() local
Dbind_noexcept_mf_test.cpp36 int g1(int a1) const noexcept { hash = (hash * 17041 + a1 * 2) % 32768; return 0; } in g1() function
78 boost::bind(&X::g1, &x, 1)(); in member_function_test() local
79 boost::bind(&X::g1, x, 1)(); in member_function_test() local
80 boost::bind(&X::g1, boost::ref(x), 1)(); in member_function_test() local
Dbind_cdecl_mf_test.cpp45 int __cdecl g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; return 0; } in g1() function
89 bind(&X::g1, &x, 1)(); in member_function_test() local
90 bind(&X::g1, x, 1)(); in member_function_test() local
91 bind(&X::g1, ref(x), 1)(); in member_function_test() local
Dbind_fastcall_mf_test.cpp45 void __fastcall g1(int a1) const { hash = (hash * 17041 + a1 * 2) % 32768; } in g1() function
89 bind(&X::g1, &x, 1)(); in member_function_test() local
90 bind(&X::g1, x, 1)(); in member_function_test() local
91 bind(&X::g1, ref(x), 1)(); in member_function_test() local
/external/clang/test/Sema/
Dmerge-decls.c30 _Complex int g1; // expected-note {{previous definition is here}} variable
31 _Complex float g1; // expected-error {{redefinition of 'g1'}} variable
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
Dcopy.pass.cpp64 char g1, g2, g3, p1, p3; in main() local
71 wchar_t g1, g2, g3, p1, p3; in main() local
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
Dassign.pass.cpp67 char g1, g2, g3, p1, p3; in main() local
75 wchar_t g1, g2, g3, p1, p3; in main() local
Dswap.pass.cpp76 char g1, g2, g3, p1, p3; in main() local
84 wchar_t g1, g2, g3, p1, p3; in main() local
/external/sdv/vsomeip/third_party/boost/optional/test/
Doptional_test_inplace_factory.cpp46 Guard g0, g1(1.0, "one"), g2(2.0, "two"); in test_ctor() local
77 Guard g0, g1(1.0, "one"), g2(2.0, "two"); in test_assign() local
/external/skia/src/core/
DSkMaskBlurFilter.cpp426 const fp88& g0, const fp88& g1, const fp88&, const fp88&, const fp88&, in blur_x_radius_1()
447 const fp88& g0, const fp88& g1, const fp88& g2, const fp88&, const fp88&, in blur_x_radius_2()
475 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88&, in blur_x_radius_3()
512 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()
608 g1(gauss[1]), in blur_x_rect() local
699 const fp88& g0, const fp88& g1, const fp88&, const fp88&, const fp88&, in blur_y_radius_1()
713 const fp88& g0, const fp88& g1, const fp88& g2, const fp88&, const fp88&, in blur_y_radius_2()
730 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88&, in blur_y_radius_3()
750 const fp88& g0, const fp88& g1, const fp88& g2, const fp88& g3, const fp88& g4, in blur_y_radius_4()
[all …]
/external/llvm/test/MC/ELF/
Dcomdat.s90 g1: label

12345678910>>...12