/third_party/vk-gl-cts/framework/common/ |
D | tcuMatrix.hpp | 34 template <typename T, int Rows, int Cols> 38 typedef Vector<T, Rows> Element; 44 ROWS = Rows, 50 explicit Matrix (const T src[Rows*Cols]); 51 Matrix (const Vector<T, Rows>& src); 52 Matrix (const Matrix<T, Rows, Cols>& src); 55 Matrix<T, Rows, Cols>& operator= (const Matrix<T, Rows, Cols>& src); 56 Matrix<T, Rows, Cols>& operator*= (const Matrix<T, Rows, Cols>& src); 59 void setColumn (int colNdx, const Vector<T, Rows>& vec); 62 Vector<T, Rows>& getColumn (int ndx); [all …]
|
D | tcuMatrixUtil.hpp | 36 template <typename T, int Rows, int Cols> 37 Matrix<T, Cols, Rows> transpose (const Matrix<T, Rows, Cols>& mat); 60 template <typename T, int Rows, int Cols> 61 inline Matrix<T, Cols, Rows> transpose (const Matrix<T, Rows, Cols>& mat) in transpose() argument 63 Matrix<T, Cols, Rows> res; in transpose() 64 for (int row = 0; row < Rows; row++) in transpose()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/ |
D | Math.h | 127 Matrix(unsigned Rows, unsigned Cols) : in Matrix() argument 128 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix() 133 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal) in Matrix() argument 134 : Rows(Rows), Cols(Cols), in Matrix() 135 Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix() 136 std::fill(Data.get(), Data.get() + (Rows * Cols), InitVal); in Matrix() 141 : Rows(M.Rows), Cols(M.Cols), in Matrix() 142 Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix() 143 std::copy(M.Data.get(), M.Data.get() + (Rows * Cols), Data.get()); in Matrix() 148 : Rows(M.Rows), Cols(M.Cols), Data(std::move(M.Data)) { in Matrix() [all …]
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_matrix.cpp | 113 if (Rows () != m.Rows () || in operator ==() 121 for (uint32 j = 0; j < Rows (); j++) in operator ==() 148 if (Rows () != Cols ()) in IsDiagonal() 153 for (uint32 j = 0; j < Rows (); j++) in IsDiagonal() 187 for (uint32 j = 0; j < Rows (); j++) in MaxEntry() 213 for (uint32 j = 0; j < Rows (); j++) in MinEntry() 230 for (uint32 j = 0; j < Rows (); j++) in Scale() 247 for (uint32 j = 0; j < Rows (); j++) in Round() 264 for (uint32 j = 0; j < Rows (); j++) in SafeRound() 307 if (Rows () != 3 || in dng_matrix_3by3() [all …]
|
D | dng_camera_profile.cpp | 298 fColorMatrix1.Rows () > 1; in HasColorMatrix1() 308 fColorMatrix2.Rows () == fColorMatrix1.Rows (); in HasColorMatrix2() 415 uint32 colorChannels = ColorMatrix1 ().Rows (); in CalculateFingerprint() 421 if (fForwardMatrix1.Rows () == fColorMatrix1.Cols () && in CalculateFingerprint() 422 fForwardMatrix1.Cols () == fColorMatrix1.Rows ()) in CalculateFingerprint() 429 if (colorChannels > 3 && fReductionMatrix1.Rows () * in CalculateFingerprint() 444 if (fForwardMatrix2.Rows () == fColorMatrix2.Cols () && in CalculateFingerprint() 445 fForwardMatrix2.Cols () == fColorMatrix2.Rows ()) in CalculateFingerprint() 452 if (colorChannels > 3 && fReductionMatrix2.Rows () * in CalculateFingerprint() 606 fColorMatrix1.Rows () != channels) in IsValid() [all …]
|
D | dng_shared.cpp | 3020 fCameraCalibration1.Rows () == fCameraProfile.fColorPlanes && in PostParse() 3022 fCameraCalibration2.Rows () == fCameraProfile.fColorPlanes && in PostParse() 3175 fCameraCalibration1.Rows () != 0) in IsValidDNG() 3179 fCameraCalibration1.Rows () != fCameraProfile.fColorPlanes) in IsValidDNG() 3219 fCameraCalibration2.Rows () != 0) in IsValidDNG() 3223 fCameraCalibration2.Rows () != fCameraProfile.fColorPlanes) in IsValidDNG()
|
D | dng_color_spec.cpp | 129 if (negative.CameraCalibration1 ().Rows () == fChannels && in dng_color_spec() 137 if (negative.CameraCalibration2 ().Rows () == fChannels && in dng_color_spec()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnitIndex.cpp | 42 Rows.reset(); in parse() 57 Rows = std::make_unique<Entry[]>(Header.NumBuckets); in parseImpl() 64 Rows[i].Signature = IndexData.getU64(&Offset); in parseImpl() 71 Rows[i].Index = this; in parseImpl() 72 Rows[i].Contributions = in parseImpl() 74 Contribs[Index - 1] = Rows[i].Contributions.get(); in parseImpl() 137 auto &Row = Rows[i]; in dump() 168 if (Rows[i].Contributions) in getFromOffset() 169 OffsetLookup.push_back(&Rows[i]); in getFromOffset() 193 while (Rows[H].getSignature() != S && Rows[H].getSignature() != 0) in getFromHash() [all …]
|
D | DWARFDebugLine.cpp | 431 if (!Rows.empty()) { in dump() 434 for (const Row &R : Rows) { in dump() 446 Rows.clear(); in clear() 461 unsigned RowNumber = LineTable->Rows.size(); in appendRowToMatrix() 926 RowIter FirstRow = Rows.begin() + Seq.FirstRowIndex; in findRowInSeq() 927 RowIter LastRow = Rows.begin() + Seq.LastRowIndex; in findRowInSeq() 934 return RowPos - Rows.begin(); in findRowInSeq() 1095 const auto &Row = Rows[RowIndex]; in getFileLineInfoForAddress()
|
/third_party/skia/third_party/externals/spirv-cross/reference/opt/shaders-msl/vert/ |
D | no-contraction.vert | 26 template<typename T, int Cols, int Rows> 27 vec<T, Cols> spvFMulVectorMatrix(vec<T, Rows> v, matrix<T, Cols, Rows> m) 30 for (uint i = Rows; i > 0; --i) 42 template<typename T, int Cols, int Rows> 43 vec<T, Rows> spvFMulMatrixVector(matrix<T, Cols, Rows> m, vec<T, Cols> v) 45 vec<T, Rows> res = vec<T, Rows>(0); 48 res = fma(m[i - 1], vec<T, Rows>(v[i - 1]), res);
|
D | float-math.invariant-float-math.vert | 77 template<typename T, int Cols, int Rows> 78 vec<T, Cols> spvFMulVectorMatrix(vec<T, Rows> v, matrix<T, Cols, Rows> m) 81 for (uint i = Rows; i > 0; --i) 93 template<typename T, int Cols, int Rows> 94 vec<T, Rows> spvFMulMatrixVector(matrix<T, Cols, Rows> m, vec<T, Cols> v) 96 vec<T, Rows> res = vec<T, Rows>(0); 99 res = fma(m[i - 1], vec<T, Rows>(v[i - 1]), res);
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl/vert/ |
D | no-contraction.vert | 26 template<typename T, int Cols, int Rows> 27 vec<T, Cols> spvFMulVectorMatrix(vec<T, Rows> v, matrix<T, Cols, Rows> m) 30 for (uint i = Rows; i > 0; --i) 42 template<typename T, int Cols, int Rows> 43 vec<T, Rows> spvFMulMatrixVector(matrix<T, Cols, Rows> m, vec<T, Cols> v) 45 vec<T, Rows> res = vec<T, Rows>(0); 48 res = fma(m[i - 1], vec<T, Rows>(v[i - 1]), res);
|
D | float-math.invariant-float-math.vert | 77 template<typename T, int Cols, int Rows> 78 vec<T, Cols> spvFMulVectorMatrix(vec<T, Rows> v, matrix<T, Cols, Rows> m) 81 for (uint i = Rows; i > 0; --i) 93 template<typename T, int Cols, int Rows> 94 vec<T, Rows> spvFMulMatrixVector(matrix<T, Cols, Rows> m, vec<T, Cols> v) 96 vec<T, Rows> res = vec<T, Rows>(0); 99 res = fma(m[i - 1], vec<T, Rows>(v[i - 1]), res);
|
/third_party/vk-gl-cts/modules/glshared/ |
D | glsBuiltinPrecisionTests.cpp | 504 template <typename T, int Rows, int Cols> 505 struct Traits<Matrix<T, Rows, Cols> > : 506 ContainerTraits<Matrix<T, Rows, Cols>, Matrix<typename Traits<T>::IVal, Rows, Cols> > 934 template <typename T, int Rows, int Cols> 935 class ExprP<Matrix<T, Rows, Cols> > : public ContainerExprPBase<Matrix<T, Rows, Cols> > {}; 1008 template<int Rows, int Cols> 1009 ExprP<Vector<float, Rows> > operator* (const ExprP<Vector<float, Cols> >& left, 1010 const ExprP<Matrix<float, Rows, Cols> >& right); 1011 template<int Rows, int Cols> 1012 ExprP<Vector<float, Cols> > operator* (const ExprP<Matrix<float, Rows, Cols> >& left, [all …]
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fShaderMatrixTests.cpp | 392 template <typename T, int Rows, int Cols> 393 tcu::Matrix<T, Rows, Cols> matrixCompMult (const tcu::Matrix<T, Rows, Cols>& a, const tcu::Matrix<T… in matrixCompMult() argument 395 tcu::Matrix<T, Rows, Cols> retVal; in matrixCompMult() 397 for (int r = 0; r < Rows; ++r) in matrixCompMult() 406 template <typename T, int Rows, int Cols> 407 tcu::Matrix<T, Rows, Cols> negate (const tcu::Matrix<T, Rows, Cols>& mat) in negate() argument 409 tcu::Matrix<T, Rows, Cols> retVal; in negate() 411 for (int r = 0; r < Rows; ++r) in negate() 420 template <typename T, int Rows, int Cols> 421 tcu::Matrix<T, Rows, Cols> increment (const tcu::Matrix<T, Rows, Cols>& mat) in increment() argument [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderBuiltinPrecisionTests.cpp | 940 template <typename T, int Rows, int Cols> 941 struct Traits<Matrix<T, Rows, Cols> > : 942 ContainerTraits<Matrix<T, Rows, Cols>, Matrix<typename Traits<T>::IVal, Rows, Cols> > 1435 template <typename T, int Rows, int Cols> 1436 class ExprP<Matrix<T, Rows, Cols> > : public ContainerExprPBase<Matrix<T, Rows, Cols> > {}; 1520 template<int Rows, int Cols, typename T> 1521 ExprP<Vector<T, Rows> > operator* (const ExprP<Vector<T, Cols> >& left, 1522 const ExprP<Matrix<T, Rows, Cols> >& right); 1523 template<int Rows, int Cols, typename T> 1524 ExprP<Vector<T, Cols> > operator* (const ExprP<Matrix<T, Rows, Cols> >& left, [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
D | vktShaderBuiltinPrecisionTests.cpp | 940 template <typename T, int Rows, int Cols> 941 struct Traits<Matrix<T, Rows, Cols> > : 942 ContainerTraits<Matrix<T, Rows, Cols>, Matrix<typename Traits<T>::IVal, Rows, Cols> > 1435 template <typename T, int Rows, int Cols> 1436 class ExprP<Matrix<T, Rows, Cols> > : public ContainerExprPBase<Matrix<T, Rows, Cols> > {}; 1520 template<int Rows, int Cols, typename T> 1521 ExprP<Vector<T, Rows> > operator* (const ExprP<Vector<T, Cols> >& left, 1522 const ExprP<Matrix<T, Rows, Cols> >& right); 1523 template<int Rows, int Cols, typename T> 1524 ExprP<Vector<T, Cols> > operator* (const ExprP<Matrix<T, Rows, Cols> >& left, [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/ |
D | vktShaderRenderMatrixTests.cpp | 618 template <typename T, int Rows, int Cols> 619 tcu::Matrix<T, Rows, Cols> matrixCompMult (const tcu::Matrix<T, Rows, Cols>& a, const tcu::Matrix<T… in matrixCompMult() argument 621 tcu::Matrix<T, Rows, Cols> retVal; in matrixCompMult() 623 for (int r = 0; r < Rows; ++r) in matrixCompMult() 632 template <typename T, int Rows, int Cols> 633 tcu::Matrix<T, Cols, Rows> outerProduct (const tcu::Vector<T, Cols>& a, const tcu::Vector<T, Rows>&… in outerProduct() 635 tcu::Matrix<T, Rows, Cols> retVal; in outerProduct() 637 for (int r = 0; r < Rows; ++r) in outerProduct() 825 template <typename T, int Rows, int Cols> 826 tcu::Matrix<T, Rows, Cols> negate (const tcu::Matrix<T, Rows, Cols>& mat) in negate() argument [all …]
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fShaderMatrixTests.cpp | 624 template <typename T, int Rows, int Cols> 625 tcu::Matrix<T, Rows, Cols> matrixCompMult (const tcu::Matrix<T, Rows, Cols>& a, const tcu::Matrix<T… in matrixCompMult() argument 627 tcu::Matrix<T, Rows, Cols> retVal; in matrixCompMult() 629 for (int r = 0; r < Rows; ++r) in matrixCompMult() 638 template <typename T, int Rows, int Cols> 639 tcu::Matrix<T, Cols, Rows> outerProduct (const tcu::Vector<T, Cols>& a, const tcu::Vector<T, Rows>&… in outerProduct() 641 tcu::Matrix<T, Rows, Cols> retVal; in outerProduct() 643 for (int r = 0; r < Rows; ++r) in outerProduct() 831 template <typename T, int Rows, int Cols> 832 tcu::Matrix<T, Rows, Cols> negate (const tcu::Matrix<T, Rows, Cols>& mat) in negate() argument [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderMatrixTests.cpp | 618 template <typename T, int Rows, int Cols> 619 tcu::Matrix<T, Rows, Cols> matrixCompMult (const tcu::Matrix<T, Rows, Cols>& a, const tcu::Matrix<T… in matrixCompMult() argument 621 tcu::Matrix<T, Rows, Cols> retVal; in matrixCompMult() 623 for (int r = 0; r < Rows; ++r) in matrixCompMult() 632 template <typename T, int Rows, int Cols> 633 tcu::Matrix<T, Cols, Rows> outerProduct (const tcu::Vector<T, Cols>& a, const tcu::Vector<T, Rows>&… in outerProduct() 635 tcu::Matrix<T, Rows, Cols> retVal; in outerProduct() 637 for (int r = 0; r < Rows; ++r) in outerProduct() 825 template <typename T, int Rows, int Cols> 826 tcu::Matrix<T, Rows, Cols> negate (const tcu::Matrix<T, Rows, Cols>& mat) in negate() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnitIndex.h | 75 std::unique_ptr<Entry[]> Rows; variable 99 return makeArrayRef(Rows.get(), Header.NumBuckets); in getRows()
|
D | DWARFDebugLine.h | 244 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); } in appendRow() 294 RowVector Rows; member
|
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | paginated_data_table_test.dart | 224 expect(find.text('Rows per page:'), findsOneWidget); 226 …expect(tester.getTopRight(find.text('8')).dx, tester.getTopRight(find.text('Rows per page:')).dx +… 256 expect(find.text('Rows per page:'), findsOneWidget); 261 …(find.text('501')).dx, greaterThanOrEqualTo(tester.getTopRight(find.text('Rows per page:')).dx + 4… 289 expect(find.text('Rows per page:'), findsOneWidget); 290 expect(tester.getTopLeft(find.text('Rows per page:')).dx, lessThan(0.0)); // off screen 292 Offset(50.0, tester.getTopLeft(find.text('Rows per page:')).dy), 296 expect(find.text('Rows per page:'), findsOneWidget); 297 …expect(tester.getTopLeft(find.text('Rows per page:')).dx, 18.0); // 14 padding in the footer row, …
|
/third_party/flutter/flutter/packages/flutter_localizations/lib/src/l10n/ |
D | material_en_ZA.arb | 17 "rowsPerPageTitle": "Rows per page:",
|
D | material_en_CA.arb | 23 "rowsPerPageTitle": "Rows per page:",
|