Home
last modified time | relevance | path

Searched full:auto (Results 1 – 25 of 15455) sorted by relevance

12345678910>>...619

/external/vulkan-validation-layers/layers/generated/
Dchassis.cpp292 auto result = VkValFeatureEnableLookup.find(token); in SetLocalEnableSetting()
296 auto result2 = VkValFeatureEnableLookup2.find(token); in SetLocalEnableSetting()
319 auto result = VkValFeatureDisableLookup.find(token); in SetLocalDisableSetting()
325 auto result = ValidationDisableLookup.find(token); in SetLocalDisableSetting()
359 auto layer_data = GetLayerDataPtr(get_dispatch_key(device), layer_data_map); in GetDeviceProcAddr()
363 const auto &item = name_to_funcptr_map.find(funcName); in GetDeviceProcAddr()
371 auto &table = layer_data->device_dispatch_table; in GetDeviceProcAddr()
377 const auto &item = name_to_funcptr_map.find(funcName); in GetInstanceProcAddr()
381 auto layer_data = GetLayerDataPtr(get_dispatch_key(instance), layer_data_map); in GetInstanceProcAddr()
382 auto &table = layer_data->instance_dispatch_table; in GetInstanceProcAddr()
[all …]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
Dp5.cpp6 auto a; // expected-error{{'auto' not allowed in non-static struct member}}
7 auto *b; // expected-error{{'auto' not allowed in non-static struct member}}
8 const auto c; // expected-error{{'auto' not allowed in non-static struct member}}
10 void f() throw (auto); // expected-error{{'auto' not allowed here}}
12 friend auto; // expected-error{{'auto' not allowed in non-static struct member}}
14 operator auto(); // expected-error{{'auto' not allowed in conversion function type}}
17 // PR 9278: auto is not allowed in typedefs, except with a trailing return type.
18 typedef auto *AutoPtr; // expected-error{{'auto' not allowed in typedef}}
19 typedef auto (*PFun)(int a); // expected-error{{'auto' not allowed in typedef}}
20 typedef auto Fun(int a) -> decltype(a + a);
[all …]
Dp7-1y.cpp23 auto x3a = i;
24 decltype(auto) x3d = i;
28 auto x4a = (i);
29 decltype(auto) x4d = (i);
33 auto x5a = f();
34 decltype(auto) x5d = f();
38 auto x6a = { 1, 2 };
39 decltype(auto) x6d = { 1, 2 }; // expected-error {{cannot deduce 'decltype(auto)' from initializer …
42 auto *x7a = &i;
43 decltype(auto) *x7d = &i; // expected-error {{cannot form pointer to 'decltype(auto)'}}
[all …]
/external/clang/test/SemaCXX/
Dcxx1y-generic-lambdas-capturing.cpp35 auto L = [](auto a) { return a; }; in foo()
38 auto L = [](auto a) -> void { in foo2()
39 auto M = [](char b) -> void { in foo2()
40 auto N = [](auto c) -> void { in foo2()
63 auto L = [](auto a, auto b) { in doit()
69 auto L2 = [](auto a, int i) { in doit()
76 auto B = []() { return ^{ return a; }; }; //expected-error{{cannot be implicitly capture}}\ in doit()
80 //auto X = ^{ return a; }; in doit()
82 //auto Y = []() -> auto { return 3; return 'c'; }; in doit()
94 auto L = [=](auto a) { in doit()
[all …]
Dcxx1y-deduced-return-type.cpp4 auto f(); // expected-note {{previous}}
7 auto &g();
8 auto g() -> auto &;
10 auto h() -> auto *;
11 auto *h();
14 operator auto(); // expected-note {{declared here}}
16 int conv1a = conv1; // expected-error {{function 'operator auto' with deduced return type cannot be…
18 Conv1::operator auto() { return 123; } in operator auto()
20 int conv1c = conv1.operator auto();
24 operator auto() { return 0; } // expected-note {{previous}} in operator auto()
[all …]
Dcxx1y-generic-lambdas.cpp12 auto L = [i](auto a) { return i + a; }; in test()
19 auto L = [](auto a) { return a; }; in test()
30 T (*fp)(T) = [](auto a) { return a; }; in __anonfa2ce53a0302()
37 void fooT(T t, T (*fp)(T) = [](auto a) { return a; }) { in __anonfa2ce53a0402()
43 auto L = [](auto a) { return a; }; in test()
56 auto L = [](auto a) ->int { return a; }; //expected-note 2{{candidate template ignored}} in test()
63 auto L = [=](auto b, char c = 'x') { in test()
65 return [](auto a) ->decltype(a) { return a; }; in test()
79 auto L = [=](auto b) { in test()
80 return [](auto a) ->decltype(b)* { return (decltype(b)*)0; }; in test()
[all …]
/external/tensorflow/tensorflow/lite/delegates/xnnpack/
Dprelu_test.cc35 auto rng = std::mt19937(random_device()); in TEST()
36 auto shape_rng = in TEST()
38 const auto batch = shape_rng(); in TEST()
39 const auto height = shape_rng(); in TEST()
40 const auto width = shape_rng(); in TEST()
41 const auto channels = shape_rng(); in TEST()
55 auto rng = std::mt19937(random_device());
56 auto shape_rng =
58 const auto batch = shape_rng();
59 const auto height = shape_rng();
[all …]
Dsub_test.cc34 auto rng = std::mt19937(random_device());
35 auto shape_rng =
37 const auto batch = shape_rng();
38 const auto height = shape_rng();
39 const auto width = shape_rng();
40 const auto channels = shape_rng();
54 auto rng = std::mt19937(random_device());
55 auto shape_rng =
57 const auto batch = shape_rng();
58 const auto height = shape_rng();
[all …]
Ddiv_test.cc34 auto rng = std::mt19937(random_device());
35 auto shape_rng =
37 const auto batch = shape_rng();
38 const auto height = shape_rng();
39 const auto width = shape_rng();
40 const auto channels = shape_rng();
54 auto rng = std::mt19937(random_device());
55 auto shape_rng =
57 const auto batch = shape_rng();
58 const auto height = shape_rng();
[all …]
Dmul_test.cc34 auto rng = std::mt19937(random_device());
35 auto shape_rng =
37 const auto batch = shape_rng();
38 const auto height = shape_rng();
39 const auto width = shape_rng();
40 const auto channels = shape_rng();
54 auto rng = std::mt19937(random_device());
55 auto shape_rng =
57 const auto batch = shape_rng();
58 const auto height = shape_rng();
[all …]
Dadd_test.cc34 auto rng = std::mt19937(random_device());
35 auto shape_rng =
37 const auto batch = shape_rng();
38 const auto height = shape_rng();
39 const auto width = shape_rng();
40 const auto channels = shape_rng();
54 auto rng = std::mt19937(random_device());
55 auto shape_rng =
57 const auto batch = shape_rng();
58 const auto height = shape_rng();
[all …]
Dfully_connected_test.cc34 auto rng = std::mt19937(random_device());
35 auto channels_rng =
37 const auto input_channels = channels_rng();
38 const auto output_channels = channels_rng();
53 auto rng = std::mt19937(random_device());
54 auto channels_rng =
56 const auto input_channels = channels_rng();
57 const auto output_channels = channels_rng();
73 auto rng = std::mt19937(random_device());
74 auto batch_rng =
[all …]
Dmaximum_test.cc34 auto rng = std::mt19937(random_device());
35 auto shape_rng =
37 const auto batch = shape_rng();
38 const auto height = shape_rng();
39 const auto width = shape_rng();
40 const auto channels = shape_rng();
54 auto rng = std::mt19937(random_device());
55 auto shape_rng =
57 const auto batch = shape_rng();
58 const auto height = shape_rng();
[all …]
Dminimum_test.cc34 auto rng = std::mt19937(random_device());
35 auto shape_rng =
37 const auto batch = shape_rng();
38 const auto height = shape_rng();
39 const auto width = shape_rng();
40 const auto channels = shape_rng();
54 auto rng = std::mt19937(random_device());
55 auto shape_rng =
57 const auto batch = shape_rng();
58 const auto height = shape_rng();
[all …]
Dsquared_difference_test.cc34 auto rng = std::mt19937(random_device());
35 auto shape_rng =
37 const auto batch = shape_rng();
38 const auto height = shape_rng();
39 const auto width = shape_rng();
40 const auto channels = shape_rng();
54 auto rng = std::mt19937(random_device());
55 auto shape_rng =
57 const auto batch = shape_rng();
58 const auto height = shape_rng();
[all …]
Dunsigned_quantized_mean_test.cc34 auto rng = std::mt19937(random_device()); in TEST()
35 auto shape_rng = in TEST()
37 const auto batch = shape_rng(); in TEST()
38 const auto height = shape_rng(); in TEST()
39 const auto width = shape_rng(); in TEST()
40 const auto channels = shape_rng(); in TEST()
56 auto rng = std::mt19937(random_device()); in TEST()
57 auto shape_rng = in TEST()
59 const auto batch = shape_rng(); in TEST()
60 const auto height = shape_rng(); in TEST()
[all …]
Dmean_test.cc34 auto rng = std::mt19937(random_device()); in TEST()
35 auto shape_rng = in TEST()
37 const auto batch = shape_rng(); in TEST()
38 const auto height = shape_rng(); in TEST()
39 const auto width = shape_rng(); in TEST()
40 const auto channels = shape_rng(); in TEST()
55 auto rng = std::mt19937(random_device()); in TEST()
56 auto shape_rng = in TEST()
58 const auto batch = shape_rng(); in TEST()
59 const auto height = shape_rng(); in TEST()
[all …]
Dsigned_quantized_mean_test.cc34 auto rng = std::mt19937(random_device()); in TEST()
35 auto shape_rng = in TEST()
37 const auto batch = shape_rng(); in TEST()
38 const auto height = shape_rng(); in TEST()
39 const auto width = shape_rng(); in TEST()
40 const auto channels = shape_rng(); in TEST()
55 auto rng = std::mt19937(random_device()); in TEST()
56 auto shape_rng = in TEST()
58 const auto batch = shape_rng(); in TEST()
59 const auto height = shape_rng(); in TEST()
[all …]
Dunsigned_quantized_fully_connected_test.cc34 auto rng = std::mt19937(random_device());
35 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>(
39 auto filter_zero_point_rng = std::bind(
41 auto channels_rng =
43 const auto input_channels = channels_rng();
44 const auto output_channels = channels_rng();
62 auto rng = std::mt19937(random_device());
63 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>(
67 auto filter_zero_point_rng = std::bind(
69 auto channels_rng =
[all …]
Dsigned_quantized_fully_connected_test.cc34 auto rng = std::mt19937(random_device());
35 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>(
39 auto channels_rng =
41 const auto input_channels = channels_rng();
42 const auto output_channels = channels_rng();
59 auto rng = std::mt19937(random_device());
60 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>(
64 auto channels_rng =
66 const auto input_channels = channels_rng();
67 const auto output_channels = channels_rng();
[all …]
Dsigned_quantized_mul_test.cc35 auto rng = std::mt19937(random_device());
36 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>(
40 auto shape_rng =
42 const auto batch = shape_rng();
43 const auto height = shape_rng();
44 const auto width = shape_rng();
45 const auto channels = shape_rng();
62 auto rng = std::mt19937(random_device());
63 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>(
67 auto shape_rng =
[all …]
Dunsigned_quantized_sub_test.cc35 auto rng = std::mt19937(random_device());
36 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>(
40 auto shape_rng =
42 const auto batch = shape_rng();
43 const auto height = shape_rng();
44 const auto width = shape_rng();
45 const auto channels = shape_rng();
63 auto rng = std::mt19937(random_device());
64 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>(
68 auto shape_rng =
[all …]
Dsigned_quantized_sub_test.cc35 auto rng = std::mt19937(random_device());
36 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>(
40 auto shape_rng =
42 const auto batch = shape_rng();
43 const auto height = shape_rng();
44 const auto width = shape_rng();
45 const auto channels = shape_rng();
62 auto rng = std::mt19937(random_device());
63 auto zero_point_rng = std::bind(std::uniform_int_distribution<int32_t>(
67 auto shape_rng =
[all …]
/external/tensorflow/tensorflow/compiler/xla/tests/
Dvalue_inference_test.cc63 TF_ASSIGN_OR_RETURN(auto literal_slice, in ComputeDynamismLiteral()
70 TF_ASSIGN_OR_RETURN(auto literal,
80 auto computation = ConstantR0<int32_t>(&b, 42); in TEST_F()
82 auto value = ComputeDynamismScalar(computation, &b); in TEST_F()
91 auto computation = Iota(&b, S32, 2); in TEST_F()
99 auto c = ConstantR0<int32_t>(&b, 42); in TEST_F()
100 auto p = Parameter(&b, 0, ShapeUtil::MakeScalarShape(S32), "p0"); in TEST_F()
102 auto tuple = Tuple(&b, {c, p}); in TEST_F()
109 auto c = ConstantR0<int32_t>(&b, 42); in TEST_F()
110 auto p = Parameter(&b, 0, ShapeUtil::MakeScalarShape(S32), "p0"); in TEST_F()
[all …]
/external/ComputeLibrary/src/core/NEON/
DSVEMath.inl38 const auto A = svmla_f32_z(pg, coeff_1, coeff_5, x);
39 const auto B = svmla_f32_z(pg, coeff_3, coeff_7, x);
40 const auto C = svmla_f32_z(pg, coeff_2, coeff_6, x);
41 const auto D = svmla_f32_z(pg, coeff_4, coeff_8, x);
42 const auto x2 = svmul_f32_z(pg, x, x);
43 const auto x4 = svmul_f32_z(pg, x2, x2);
44 const auto res = svmla_f32_z(pg, svmla_f32_z(pg, A, B, x2), svmla_f32_z(pg, C, D, x2), x4);
51 const auto A = svmla_f16_z(pg, coeff_1, coeff_5, x);
52 const auto B = svmla_f16_z(pg, coeff_3, coeff_7, x);
53 const auto C = svmla_f16_z(pg, coeff_2, coeff_6, x);
[all …]

12345678910>>...619