Home
last modified time | relevance | path

Searched refs:Rows (Results 1 - 25 of 30) sorted by relevance

12

/third_party/vk-gl-cts/framework/common/
H A DtcuMatrix.hpp34 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, Col
[all...]
H A DtcuMatrixUtil.hpp36 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()
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/
H A DMath.h127 Matrix(unsigned Rows, unsigned Cols) :
128 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) {
133 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal)
134 : Rows(Rows), Cols(Cols),
135 Data(std::make_unique<PBQPNum []>(Rows * Cols)) {
136 std::fill(Data.get(), Data.get() + (Rows * Cols), InitVal);
141 : Rows(
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_matrix.cpp113 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 (); in SafeRound()
[all...]
H A Ddng_camera_profile.cpp298 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()
[all...]
H A Ddng_color_spec.cpp129 if (negative.CameraCalibration1 ().Rows () == fChannels && in dng_color_spec()
137 if (negative.CameraCalibration2 ().Rows () == fChannels && in dng_color_spec()
H A Ddng_shared.cpp3020 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()
H A Ddng_matrix.h61 uint32 Rows () const in Rows() function in dng_matrix
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp42 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[ in getFromHash()
[all...]
H A DDWARFDebugLine.cpp431 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()
H A DDWARFVerifier.cpp751 for (const auto &Row : LineTable->Rows) { in verifyDebugLineRows()
763 LineTable->Rows[RowIndex - 1].dump(OS); in verifyDebugLineRows()
/third_party/vk-gl-cts/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp504 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, Col
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp939 template <typename T, int Rows, int Cols>
940 struct Traits<Matrix<T, Rows, Cols> > :
941 ContainerTraits<Matrix<T, Rows, Cols>, Matrix<typename Traits<T>::IVal, Rows, Cols> >
1434 template <typename T, int Rows, int Cols>
1435 class ExprP<Matrix<T, Rows, Cols> > : public ContainerExprPBase<Matrix<T, Rows, Cols> > {};
1519 template<int Rows, int Cols, typename T>
1520 ExprP<Vector<T, Rows> > operator* (const ExprP<Vector<T, Cols> >& left,
1521 const ExprP<Matrix<T, Rows, Col
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp940 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, Col
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fShaderMatrixTests.cpp392 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, Rows, Cols>& b) in matrixCompMult()
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()
409 tcu::Matrix<T, Rows, Col in negate()
720 str << "mat" << Cols << "x" << Rows; writeMatrixConstructor() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp618 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, Rows, Cols>& b) in matrixCompMult()
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>& b) in outerProduct()
635 tcu::Matrix<T, Rows, Col in outerProduct()
1320 str << "mat" << Cols << "x" << Rows; writeMatrixConstructor() local
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fShaderMatrixTests.cpp624 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, Rows, Cols>& b) in matrixCompMult()
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>& b) in outerProduct()
641 tcu::Matrix<T, Rows, Col in outerProduct()
1326 str << "mat" << Cols << "x" << Rows; writeMatrixConstructor() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp618 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, Rows, Cols>& b) in matrixCompMult()
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>& b) in outerProduct()
635 tcu::Matrix<T, Rows, Col in outerProduct()
1320 str << "mat" << Cols << "x" << Rows; writeMatrixConstructor() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h75 std::unique_ptr<Entry[]> Rows; member in llvm::DWARFUnitIndex
99 return makeArrayRef(Rows.get(), Header.NumBuckets); in getRows()
H A DDWARFDebugLine.h244 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); } in appendRow()
294 RowVector Rows; member
/third_party/backends/backend/
H A Dmustek_usb2_reflective.c54 static SANE_Bool Reflective_GetRows (SANE_Byte * lpBlock, unsigned short * Rows, SANE_Bool isOrderInvert);
1875 Rows: the rows of image
1885 Reflective_GetRows (SANE_Byte * lpBlock, unsigned short * Rows, SANE_Bool isOrderInvert) in Reflective_GetRows() argument
1904 Rows); in Reflective_GetRows()
1906 return MustScanner_GetRgb48BitLine (lpBlock, isOrderInvert, Rows); in Reflective_GetRows()
1911 Rows); in Reflective_GetRows()
1913 return MustScanner_GetRgb24BitLine (lpBlock, isOrderInvert, Rows); in Reflective_GetRows()
1918 Rows); in Reflective_GetRows()
1920 return MustScanner_GetMono16BitLine (lpBlock, isOrderInvert, Rows); in Reflective_GetRows()
1925 Rows); in Reflective_GetRows()
[all...]
H A Dmustek_usb2_transparent.c54 static SANE_Bool Transparent_GetRows (SANE_Byte * lpBlock, unsigned short * Rows, SANE_Bool isOrderInvert);
539 Rows: the rows of image
548 Transparent_GetRows (SANE_Byte * lpBlock, unsigned short * Rows, SANE_Bool isOrderInvert) in Transparent_GetRows() argument
566 Rows); in Transparent_GetRows()
568 return MustScanner_GetRgb48BitLine (lpBlock, isOrderInvert, Rows); in Transparent_GetRows()
573 Rows); in Transparent_GetRows()
575 return MustScanner_GetRgb24BitLine (lpBlock, isOrderInvert, Rows); in Transparent_GetRows()
580 Rows); in Transparent_GetRows()
582 return MustScanner_GetMono16BitLine (lpBlock, isOrderInvert, Rows); in Transparent_GetRows()
587 Rows); in Transparent_GetRows()
[all...]
H A Dmustek_usb2.c965 unsigned short Rows = 0; in ReadScannedData() local
977 Rows = pImageRows->wWantedLineNum; in ReadScannedData()
979 DBG (DBG_INFO, "ReadScannedData: wanted Rows = %d\n", Rows); in ReadScannedData()
983 if (FALSE == Reflective_GetRows (lpBlock, &Rows, isRGBInvert)) in ReadScannedData()
988 if (FALSE == Transparent_GetRows (lpBlock, &Rows, isRGBInvert)) in ReadScannedData()
992 pImageRows->wXferedLineNum = Rows; in ReadScannedData()
996 int TotalSize = Rows * g_ssSuggest.dwBytesPerRow; in ReadScannedData()
1042 g_ssSuggest.dwBytesPerRow * Rows); in ReadScannedData()
1046 g_dwAlreadyGetNegLines += Rows; in ReadScannedData()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/
H A DDWARFLinker.h145 /// Emit the line table described in \p Rows into the debug_line section.
149 std::vector<DWARFDebugLine::Row> &Rows,
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cGPUShaderFP64Tests.cpp12231 template <int Cols, int Rows>
12232 static tcu::Matrix<glw::GLdouble, Rows, Cols> outerProduct(const tcu::Vector<glw::GLdouble, Rows>& left,
12252 template <typename T, int Rows, int Cols>
12253 static tcu::Matrix<T, Cols, Rows> transpose(const tcu::Matrix<T, Rows, Cols>& matrix);
12551 template <int Cols, int Rows>
12552 static tcu::Matrix<glw::GLdouble, Rows, Cols> outerProduct(const tcu::Vector<glw::GLdouble, Rows>& left, in outerProduct()
12555 tcu::Matrix<glw::GLdouble, Rows, in outerProduct()
[all...]

Completed in 58 milliseconds

12