/external/python/cpython3/Lib/test/ |
D | test_yield_from.py | 26 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/ |
D | p10-0x.cpp | 3 volatile int g1; variable 16 __extension__ g1; in f1() local
|
/external/rust/android-crates-io/crates/petgraph/tests/ |
D | iso.rs | 379 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/ |
D | cross-section-relative.s | 6 .globl g1 # @g1 symbol 8 g1: label
|
/external/pytorch/aten/src/ATen/test/ |
D | test_thread_pool_guard.cpp | 11 caffe2::_NoPThreadPoolGuard g1; in TEST() local 39 caffe2::_NoPThreadPoolGuard g1; in TEST() local
|
/external/clang/test/SemaCXX/ |
D | function-pointer-arguments.cpp | 10 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/ |
D | ScalarSplitParameters.java | 20 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/ |
D | ScalarSplitParameters.java | 16 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/ |
D | ScalarSplitParameters.java | 20 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/ |
D | bind_void_mf_test.cpp | 52 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
|
D | bind_fastcall_mf_test.cpp | 46 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
|
D | bind_stdcall_mf_test.cpp | 46 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
|
D | bind_cdecl_mf_test.cpp | 26 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
|
D | bind_mf2_test.cpp | 44 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/ |
D | bind_stdcall_mf_test.cpp | 45 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
|
D | bind_noexcept_mf_test.cpp | 36 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
|
D | bind_cdecl_mf_test.cpp | 45 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
|
D | bind_fastcall_mf_test.cpp | 45 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/ |
D | merge-decls.c | 30 _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/ |
D | copy.pass.cpp | 64 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/ |
D | assign.pass.cpp | 67 char g1, g2, g3, p1, p3; in main() local 75 wchar_t g1, g2, g3, p1, p3; in main() local
|
D | swap.pass.cpp | 76 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/ |
D | optional_test_inplace_factory.cpp | 46 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/ |
D | SkMaskBlurFilter.cpp | 426 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/ |
D | comdat.s | 90 g1: label
|