| /external/mesa3d/src/intel/compiler/ |
| D | test_fs_scoreboard.cpp | 151 fs_reg g[16]; in TEST_F() local 155 fs_reg x = v->vgrf(glsl_int_type()); in TEST_F() local 177 fs_reg g[16]; in TEST_F() local 181 fs_reg x = v->vgrf(glsl_int_type()); in TEST_F() local 202 fs_reg g[16]; in TEST_F() local 206 fs_reg x = v->vgrf(glsl_int_type()); in TEST_F() local 228 fs_reg g[16]; in TEST_F() local 236 fs_reg x = v->vgrf(glsl_int_type()); in TEST_F() local 260 fs_reg g[16]; in TEST_F() local 264 fs_reg x = v->vgrf(glsl_int_type()); in TEST_F() local [all …]
|
| /external/tensorflow/tensorflow/core/ops/ |
| D | math_grad_test.cc | 43 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/ |
| D | atomics.cpp | 8 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/clang/test/Sema/ |
| D | 128bitfloat.cpp | 8 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
|
| D | redefinition.c | 7 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/XNNPACK/test/ |
| D | deconvolution-operator-tester.h | 480 for (size_t g = 0; g < groups(); g++) { in TestQS8() local 500 const size_t x = ox + padding_left() - kx * dilation_width(); in TestQS8() local 503 for (size_t g = 0; g < groups(); g++) { in TestQS8() local 627 for (size_t x = 0; x < output_width(); x++) { in VerifyQS8() local 628 for (size_t g = 0; g < groups(); g++) { in VerifyQS8() local 683 for (size_t g = 0; g < groups(); g++) { in TestQU8() local 703 const size_t x = ox + padding_left() - kx * dilation_width(); in TestQU8() local 706 for (size_t g = 0; g < groups(); g++) { in TestQU8() local 832 for (size_t x = 0; x < output_width(); x++) { in VerifyQU8() local 833 for (size_t g = 0; g < groups(); g++) { in VerifyQU8() local [all …]
|
| D | convolution-operator-tester.h | 764 for (size_t x = 0; x < output_width(); x++) { in VerifyNHWCxQC8() local 765 for (size_t g = 0; g < groups(); g++) { in VerifyNHWCxQC8() local 984 for (size_t x = 0; x < output_width(); x++) { in VerifyNHWCxQS8() local 985 for (size_t g = 0; g < groups(); g++) { in VerifyNHWCxQS8() local 1034 for (size_t g = 0; g < groups(); g++) { in TestNHWCxQU8() local 1225 for (size_t x = 0; x < output_width(); x++) { in VerifyNHWCxQU8() local 1226 for (size_t g = 0; g < groups(); g++) { in VerifyNHWCxQU8() local 1269 for (size_t g = 0; g < groups(); g++) { in TestNHWCxF32() local 1293 for (size_t g = 0; g < groups(); g++) { in TestNHWCxF32() local 1317 for (size_t g = 0; g < groups(); g++) { in TestNHWCxF32() local [all …]
|
| /external/skia/src/core/ |
| D | SkPixmap.cpp | 89 static const void* fast_getaddr(const SkPixmap& pm, int x, int y) { in fast_getaddr() 94 float SkPixmap::getAlphaf(int x, int y) const { in getAlphaf() 171 int x, int y) const { in readPixels() 187 SkColor SkPixmap::getColor(int x, int y) const { in getColor() 241 uint32_t g = 255 * SkHalfToFloat((value >> 16) & 0xffff); in getColor() local 259 auto srgb_to_linear = [](float x) { in getColor() 266 g = ((value >> 8) & 0xff) * (1/255.0f), in getColor() local 307 g = ((value >> 10) & 0x3ff) * (1/1023.0f), in getColor() local 330 g = ((value >> 22) & 0x3ff) * (1/1023.0f), in getColor() local 342 g = ((value >> 16) & 0xffff) * (1/65535.0f), in getColor() local [all …]
|
| /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/ |
| D | SessionTest.java | 33 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()
|
| D | GraphTest.java | 37 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/ |
| D | lgc.h | 42 #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/ |
| D | GradientsTest.java | 39 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
|
| D | GeneratedOperationsTest.java | 36 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/libyuv/source/ |
| D | row_common.cc | 127 int x; in RGB24ToARGBRow_C() local 130 uint8_t g = src_rgb24[1]; in RGB24ToARGBRow_C() local 142 int x; in RAWToARGBRow_C() local 145 uint8_t g = src_raw[1]; in RAWToARGBRow_C() local 157 int x; in RAWToRGBARow_C() local 160 uint8_t g = src_raw[1]; in RAWToRGBARow_C() local 172 int x; in RAWToRGB24Row_C() local 175 uint8_t g = src_raw[1]; in RAWToRGB24Row_C() local 188 int x; in RGB565ToARGBRow_C() local 191 uint8_t g = STATIC_CAST( in RGB565ToARGBRow_C() local [all …]
|
| /external/sdv/vsomeip/third_party/boost/preprocessor/include/boost/preprocessor/slot/detail/ |
| D | def.hpp | 17 # define BOOST_PP_SLOT_OFFSET_10(x) (x) % 1000000000UL argument 18 # define BOOST_PP_SLOT_OFFSET_9(x) BOOST_PP_SLOT_OFFSET_10(x) % 100000000UL argument 19 # define BOOST_PP_SLOT_OFFSET_8(x) BOOST_PP_SLOT_OFFSET_9(x) % 10000000UL argument 20 # define BOOST_PP_SLOT_OFFSET_7(x) BOOST_PP_SLOT_OFFSET_8(x) % 1000000UL argument 21 # define BOOST_PP_SLOT_OFFSET_6(x) BOOST_PP_SLOT_OFFSET_7(x) % 100000UL argument 22 # define BOOST_PP_SLOT_OFFSET_5(x) BOOST_PP_SLOT_OFFSET_6(x) % 10000UL argument 23 # define BOOST_PP_SLOT_OFFSET_4(x) BOOST_PP_SLOT_OFFSET_5(x) % 1000UL argument 24 # define BOOST_PP_SLOT_OFFSET_3(x) BOOST_PP_SLOT_OFFSET_4(x) % 100UL argument 25 # define BOOST_PP_SLOT_OFFSET_2(x) BOOST_PP_SLOT_OFFSET_3(x) % 10UL argument 34 # define BOOST_PP_SLOT_CC_7(a, b, c, d, e, f, g) BOOST_PP_SLOT_CC_7_D(a, b, c, d, e, f, g) argument [all …]
|
| /external/libaom/third_party/libyuv/source/ |
| D | row_common.cc | 99 int x; in RGB24ToARGBRow_C() local 102 uint8_t g = src_rgb24[1]; in RGB24ToARGBRow_C() local 114 int x; in RAWToARGBRow_C() local 117 uint8_t g = src_raw[1]; in RAWToARGBRow_C() local 129 int x; in RAWToRGBARow_C() local 132 uint8_t g = src_raw[1]; in RAWToRGBARow_C() local 144 int x; in RAWToRGB24Row_C() local 147 uint8_t g = src_raw[1]; in RAWToRGB24Row_C() local 160 int x; in RGB565ToARGBRow_C() local 163 uint8_t g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToARGBRow_C() local [all …]
|
| /external/clang/test/SemaCXX/ |
| D | unknown-type-name.cpp | 16 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/libvpx/third_party/libyuv/source/ |
| D | row_common.cc | 85 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/angle/src/tests/test_utils/ |
| D | ANGLETest.h | 192 GLColor MakeGLColor(TR r, TG g, TB b, TA a) in MakeGLColor() 211 GLColor32F MakeGLColor32F(TR r, TG g, TB b, TA a) in MakeGLColor32F() 236 #define EXPECT_PIXEL_EQ(x, y, r, g, b, a) \ argument 239 #define EXPECT_PIXEL_NE(x, y, r, g, b, a) \ argument 242 #define EXPECT_PIXEL_32F_EQ(x, y, r, g, b, a) \ argument 245 #define EXPECT_PIXEL_ALPHA_EQ(x, y, a) EXPECT_EQ(a, angle::ReadColor(x, y).A) argument 247 #define EXPECT_PIXEL_ALPHA_NEAR(x, y, a, abs_error) \ argument 250 #define EXPECT_PIXEL_ALPHA32F_EQ(x, y, a) EXPECT_EQ(a, angle::ReadColor32F(x, y).A) argument 252 #define EXPECT_PIXEL_COLOR_EQ(x, y, angleColor) EXPECT_EQ(angleColor, angle::ReadColor(x, y)) argument 257 #define EXPECT_PIXEL_COLOR32F_EQ(x, y, angleColor) EXPECT_EQ(angleColor, angle::ReadColor32F(x, y)) argument [all …]
|
| /external/tensorflow/tensorflow/python/ops/ |
| D | array_ops_test.py | 79 def g(x): function 88 def g(x): function
|
| /external/tensorflow/tensorflow/python/ops/memory_tests/ |
| D | custom_gradient_memory_test.py | 72 def f(x): argument 77 def g(f, x): function 134 def f(x): argument 140 def g(f, x): function
|
| /external/tensorflow/tensorflow/python/eager/ |
| D | def_function_xla_jit_test.py | 75 def fn(x, a): argument 89 def fn(x, a): argument 98 def fn(x, a): argument 128 def fn(x, a): argument 132 def fn2(x, a): argument 144 def fn(x): argument 150 def fn2(x): argument 163 def fn(x): argument 178 def fn(x, y): argument 200 def fn(x): argument [all …]
|
| /external/libgsm/inc/ |
| D | proto.h | 40 # define P1(x, a) (a) argument 41 # define P2(x, a, b) (a, b) argument 42 # define P3(x, a, b, c) (a, b, c) argument 43 # define P4(x, a, b, c, d) (a, b, c, d) argument 44 # define P5(x, a, b, c, d, e) (a, b, c, d, e) argument 45 # define P6(x, a, b, c, d, e, f) (a, b, c, d, e, f) argument 46 # define P7(x, a, b, c, d, e, f, g) (a, b, c, d, e, f, g) argument 47 # define P8(x, a, b, c, d, e, f, g, h) (a, b, c, d, e, f, g, h) argument 54 # define P1(x, a) x a; argument 55 # define P2(x, a, b) x a; b; argument [all …]
|
| /external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/ |
| D | eval.pass.cpp | 25 double fac(double x) in fac() 34 I(double x, unsigned a, unsigned b) in I() 44 f(double x, double m, double n) in f() 55 G g; in main() local 72 G g; in main() local 89 G g; in main() local
|
| /external/clang/test/CXX/except/except.spec/ |
| D | p1.cpp | 13 void g(int) throw(X) { } in g() function 47 void g() noexcept throw(int) { } // expected-error {{cannot have both}} in g() function 64 T* x = 1; in f() local 68 void g(T x) noexcept((sizeof(T) == sizeof(int)) || noexcept(f(x))) { } in g() function 84 void g() { in g() function
|