Home
last modified time | relevance | path

Searched +defs:g +defs:x (Results 1 – 25 of 1415) sorted by relevance

12345678910>>...57

/external/llvm-project/flang/test/Semantics/
Dresolve17.f9030 subroutine s2(x) argument
35 interface g interface
39 subroutine s_real(x) argument
43 interface g interface
59 interface g interface
63 subroutine s_real(x) argument
87 subroutine sa(x) argument
105 interface g interface
109 subroutine s1(x) argument
113 interface g interface
[all …]
Dmodfile07.f906 real, intent(in) :: x local
10 complex, intent(in) :: x local
17 real, intent(in) :: x local
23 complex, intent(in) :: x local
27 integer, intent(in) :: x local
48 logical, intent(in) :: x,y local
51 integer, intent(in) :: x,y local
184 real :: x component
206 interface g interface
284 real(4)::x local
[all …]
Dresolve53.f907 interface g interface
14 subroutine s1(x) argument
15 integer(8) x local
17 subroutine s2(x) argument
18 integer x local
22 subroutine s4(x) argument
23 integer x local
29 interface g interface
33 real x local
40 interface g interface
[all …]
Dresolve38.f9071 generic :: g => s1 method
72 generic :: g => s2 method
78 generic :: g => p1 method
79 generic :: g => p2 method
86 subroutine s2(x) argument
94 generic :: g => s1 method
95 generic :: g => s2 method
99 generic :: g => s1 method
104 subroutine s2(x) argument
119 class(t), intent(in) :: x local
[all …]
Dresolve18.f905 subroutine foo(x) argument
6 real :: x local
69 interface g interface
71 type g type
76 interface g interface
79 type(g) :: x variable
/external/mesa3d/src/intel/compiler/
Dtest_fs_scoreboard.cpp123 fs_reg g[16]; in TEST_F() local
127 fs_reg x = v->vgrf(glsl_type::int_type); in TEST_F() local
150 fs_reg g[16]; in TEST_F() local
154 fs_reg x = v->vgrf(glsl_type::int_type); in TEST_F() local
177 fs_reg g[16]; in TEST_F() local
181 fs_reg x = v->vgrf(glsl_type::int_type); in TEST_F() local
205 fs_reg g[16]; in TEST_F() local
213 fs_reg x = v->vgrf(glsl_type::int_type); in TEST_F() local
238 fs_reg g[16]; in TEST_F() local
242 fs_reg x = v->vgrf(glsl_type::int_type); in TEST_F() local
[all …]
/external/tensorflow/tensorflow/core/ops/
Dmath_grad_test.cc43 Status Unary(const FDH::Node& op_node, const Tensor& x, const DataType dst, in Unary()
97 Status Unary(const string& op, const Tensor& x, Tensor* y) { in Unary()
103 Tensor SymGrad(const string& op, const Tensor& x) { in SymGrad()
109 Tensor SymCastGrad(const Tensor& x, const DataType dst) { in SymCastGrad()
118 void SymGrad(const string& op, const Tensor& x, const Tensor& y, Tensor* dx, in SymGrad()
174 void ReductionGrad(const string& op, const Tensor& x, const Tensor& idx, in ReductionGrad()
228 Tensor ReduceSum(const Tensor& x, gtl::ArraySlice<int32> axes) { in ReduceSum()
252 const string& attr_adj_y, const Tensor& x, bool ax, in MatMulCommon()
272 Tensor MatMul(const Tensor& x, bool ax, const Tensor& y, bool ay) { in MatMul()
276 Tensor BatchMatMul(const Tensor& x, bool ax, const Tensor& y, bool ay) { in BatchMatMul()
[all …]
/external/clang/test/SemaTemplate/
Datomics.cpp8 int g(long long* x) { return f(x); } in g() function
9 int g(int* x) { return f(x); } in g() function
13 void g(unsigned *x) { in g() function
/external/llvm-project/clang/test/SemaTemplate/
Datomics.cpp8 int g(long long* x) { return f(x); } in g() function
9 int g(int* x) { return f(x); } in g() function
13 void g(unsigned *x) { in g() function
/external/llvm-project/clang/test/Sema/
D128bitfloat.cpp12 int g(int x, __float128 *y) { in g() function
25 int g(int x, __float128 *y) { // expected-error {{__float128 is not supported on this target}} in g() function
34 int g(int x, __float128 *y) { // expected-error {{__float128 is not supported on this target}} in g() function
Dredefinition.c7 int foo(x) { in foo() argument
10 int x = 1; variable
13 extern inline int g(void) { return 0; } // expected-note{{previous definition}} in g() function
14 int g(void) { return 0; } // expected-error{{redefinition of a 'extern inline' function 'g' is not … in g() function
/external/clang/test/Sema/
D128bitfloat.cpp8 int g(int x, __float128 *y) { in g() function
21 int g(int x, __float128 *y) { // expected-error {{__float128 is not supported on this target}} in g() function
30 int g(int x, __float128 *y) { // expected-error {{__float128 is not supported on this target}} in g() function
Dredefinition.c7 int foo(x) { in foo() argument
10 int x = 1; variable
13 extern inline int g(void) { return 0; } // expected-note{{previous definition}} in g() function
14 int g(void) { return 0; } // expected-error{{redefinition of a 'extern inline' function 'g' is not … in g() function
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
DSessionTest.java33 try (Graph g = new Graph(); in runUsingOperationNames()
36 try (Tensor<Integer> x = Tensors.create(new int[][] {{5}, {7}}); in runUsingOperationNames()
48 try (Graph g = new Graph(); in runUsingOperationHandles()
53 try (Tensor<Integer> x = Tensors.create(new int[][] {{5}, {7}}); in runUsingOperationHandles()
65 try (Graph g = new Graph(); in runUsingColonSeparatedNames()
102 try (Graph g = new Graph(); in runWithMetadata()
105 try (Tensor<Integer> x = Tensors.create(new int[][] {{5}, {7}})) { in runWithMetadata()
132 try (Graph g = new Graph(); in runMultipleOutputs()
147 try (Graph g = new Graph()) { in failOnUseAfterClose()
161 try (Graph g = new Graph(); in createWithConfigProto()
DGraphTest.java37 try (Graph g = new Graph()) { in graphDefRoundTrip()
42 try (Graph g = new Graph()) { in graphDefRoundTrip()
46 try (Graph g = new Graph()) { in graphDefRoundTrip()
54 private static void validateImportedGraph(Graph g, String prefix) { in validateImportedGraph()
79 try (Graph g = new Graph()) { in iterateOverOperations()
107 try (Graph g = new Graph()) { in failImportOnInvalidGraphDefs()
124 Graph g = new Graph(); in failOnUseAfterClose() local
135 try (Graph g = new Graph(); in addGradientsToGraph()
176 try (Graph g = new Graph(); in addGradientSumsToGraph()
179 Output<Float> x = TestUtil.placeholder(g, "x", Float.class); in addGradientSumsToGraph() local
[all …]
/external/lua/src/
Dlgc.h42 #define issweepphase(g) \ argument
54 #define keepinvariant(g) ((g)->gcstate <= GCSatomic) argument
60 #define resetbits(x,m) ((x) &= cast_byte(~(m))) argument
61 #define setbits(x,m) ((x) |= (m)) argument
62 #define testbits(x,m) ((x) & (m)) argument
65 #define l_setbit(x,b) setbits(x, bitmask(b)) argument
66 #define resetbit(x,b) resetbits(x, bitmask(b)) argument
67 #define testbit(x,b) testbits(x, bitmask(b)) argument
87 #define iswhite(x) testbits((x)->marked, WHITEBITS) argument
88 #define isblack(x) testbit((x)->marked, BLACKBIT) argument
[all …]
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/core/
DGradientsTest.java39 try (Graph g = new Graph(); in createGradients()
43 Output<Float> x = TestUtil.placeholder(g, "x1", Float.class); in createGradients() local
66 try (Graph g = new Graph(); in createGradientsWithSum()
70 Output<Float> x = TestUtil.placeholder(g, "x1", Float.class); in createGradientsWithSum() local
91 try (Graph g = new Graph(); in createGradientsWithInitialValues()
95 Output<Float> x = TestUtil.placeholder(g, "x1", Float.class); in createGradientsWithInitialValues() local
118 try (Graph g = new Graph()) { in validateGradientsNames()
121 Output<Float> x = TestUtil.placeholder(g, "x1", Float.class); in validateGradientsNames() local
DGeneratedOperationsTest.java36 try (Graph g = new Graph(); in tensorInputTensorOutput()
39 Operand<Integer> x = ops.math().add(ops.constant(1), ops.constant(2)); in tensorInputTensorOutput() local
48 try (Graph g = new Graph(); in testListInputTensorOutput()
55 Operand<Integer> x = ops.math().addN(inputs); in testListInputTensorOutput() local
71 try (Graph g = new Graph(); in testControlDependencies()
78 Operand<Integer> x = in testControlDependencies() local
/external/llvm-project/clang/test/SemaCUDA/
Dconstexpr-ctor.cu19 __host__ void f() { B<A, 1> x; } in f() local
20 __device__ void f() { B<A, 1> x; } // dev-note{{called by 'f'}} in f() local
23 __host__ foo() { B<A, 2> x; } in foo() local
24 __device__ foo() { B<A, 2> x; } // dev-note{{called by 'foo'}} in foo() local
27 __host__ void g() { foo x; } in g() function
28 __device__ void g() { foo x; } // dev-note{{called by 'g'}} in g() function
31 __host__ bar() { B<A, 3> x; } in bar() local
32 __device__ bar() { B<A, 3> x; } // no error since no instantiation of bar in bar() local
/external/XNNPACK/test/
Ddeconvolution-operator-tester.h514 for (size_t g = 0; g < groups(); g++) { in TestQU8() local
534 const size_t x = ox + padding_left() - kx * dilation_width(); in TestQU8() local
537 for (size_t g = 0; g < groups(); g++) { in TestQU8() local
606 for (size_t x = 0; x < output_width(); x++) { in TestQU8() local
607 for (size_t g = 0; g < groups(); g++) { in TestQU8() local
650 for (size_t g = 0; g < groups(); g++) { in TestF32() local
670 const size_t x = ox + padding_left() - kx * dilation_width(); in TestF32() local
673 for (size_t g = 0; g < groups(); g++) { in TestF32() local
739 for (size_t x = 0; x < output_width(); x++) { in TestF32() local
740 for (size_t g = 0; g < groups(); g++) { in TestF32() local
[all …]
/external/llvm-project/clang/test/CodeGen/
Dmangle-ms.c4 __attribute__((overloadable)) void f(void (*x)()) {} in f()
10 void g(void (*x)(int)) {} in g() function
13 __attribute__((overloadable)) void g(void (*x)()) {} in g() function
/external/libaom/libaom/third_party/libyuv/source/
Drow_common.cc74 int x; in RGB24ToARGBRow_C() local
77 uint8 g = src_rgb24[1]; in RGB24ToARGBRow_C() local
89 int x; in RAWToARGBRow_C() local
92 uint8 g = src_raw[1]; in RAWToARGBRow_C() local
104 int x; in RGB565ToARGBRow_C() local
107 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToARGBRow_C() local
120 int x; in ARGB1555ToARGBRow_C() local
123 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToARGBRow_C() local
137 int x; in ARGB4444ToARGBRow_C() local
140 uint8 g = src_argb4444[0] >> 4; in ARGB4444ToARGBRow_C() local
[all …]
/external/libyuv/files/source/
Drow_common.cc85 int x; in RGB24ToARGBRow_C() local
88 uint8_t g = src_rgb24[1]; in RGB24ToARGBRow_C() local
100 int x; in RAWToARGBRow_C() local
103 uint8_t g = src_raw[1]; in RAWToARGBRow_C() local
115 int x; in RAWToRGB24Row_C() local
118 uint8_t g = src_raw[1]; in RAWToRGB24Row_C() local
131 int x; in RGB565ToARGBRow_C() local
134 uint8_t g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToARGBRow_C() local
148 int x; in ARGB1555ToARGBRow_C() local
151 uint8_t g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToARGBRow_C() local
[all …]
/external/clang/test/SemaCXX/
Dunknown-type-name.cpp16 foo::bar x; // expected-error{{no type named 'bar' in 'N::Wibble'}} variable
44 A<T>::type g(T t) { return t; } // expected-error{{missing 'typename'}} in g() function
53 void g(T::type x) { } // expected-error{{missing 'typename'}} in g() function
59 void f(T::type x, char) { } // expected-error{{missing 'typename'}} in f()
65 void f(char, T::type x) { } // expected-error{{missing 'typename'}} in f()
71 void f(int, T::type x, char) { } // expected-error{{missing 'typename'}} in f()
93 template<typename T> int A<T>::h(T::type x, char) {} // expected-error{{missing 'typename'}} in h()
114 A<T>::g() { } // expected-error{{requires a type specifier}} in g() function in A
/external/llvm-project/clang/test/SemaCXX/
Dunknown-type-name.cpp16 foo::bar x; // expected-error{{no type named 'bar' in 'N::Wibble'}} variable
44 A<T>::type g(T t) { return t; } // expected-error{{missing 'typename'}} in g() function
53 void g(T::type x) { } // expected-error{{missing 'typename'}} in g() function
59 void f(T::type x, char) { } // expected-error{{missing 'typename'}} in f()
65 void f(char, T::type x) { } // expected-error{{missing 'typename'}} in f()
71 void f(int, T::type x, char) { } // expected-error{{missing 'typename'}} in f()
91 template<typename T> int A<T>::h(T::type x, char) {} // expected-error{{missing 'typename'}} in h()
119 A<T>::g() { } // expected-error{{requires a type specifier}} in g() function in A

12345678910>>...57