/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/ |
D | DynamicTableModel.java | 150 public int getNumRows() { in getNumRows() method in DynamicTableModel 204 if(dynamicTableModel.getNumColumns() == 0 && dynamicTableModel.getNumRows() >= 1) { in TableModelIterator() 205 calculatedRows = dynamicTableModel.getNumRows(); in TableModelIterator() 209 … } else if(dynamicTableModel.getNumRows() == 0 && dynamicTableModel.getNumColumns() >= 1) { in TableModelIterator() 214 … }else if(dynamicTableModel.getNumColumns() == 0 && dynamicTableModel.getNumRows() == 0) { in TableModelIterator() 219 calculatedRows = dynamicTableModel.getNumRows(); in TableModelIterator() 259 … if (dynamicTableModel.getNumRows() > 0 && lastRow >= (dynamicTableModel.getNumRows() - 1)) { in next()
|
/external/llvm-project/mlir/lib/Analysis/Presburger/ |
D | Matrix.cpp | 24 assert(row < getNumRows() && "Row outside of range"); in at() 30 assert(row < getNumRows() && "Row outside of range"); in at() 43 unsigned Matrix::getNumRows() const { return nRows; } in getNumRows() function in mlir::Matrix 53 assert((row < getNumRows() && otherRow < getNumRows()) && in swapRows()
|
D | Simplex.cpp | 78 if (nRow >= tableau.getNumRows()) in addRow() 864 if (level == basis.getNumRows() - 1) in reduceBasis() 927 while (i < basis.getNumRows() - 1) { in reduceBasis() 1022 snapshotStack.reserve(basis.getNumRows()); in findIntegerSample() 1023 upperBoundStack.reserve(basis.getNumRows()); in findIntegerSample() 1024 nextValueStack.reserve(basis.getNumRows()); in findIntegerSample() 1026 if (level == basis.getNumRows()) { in findIntegerSample()
|
/external/llvm-project/mlir/unittests/Analysis/Presburger/ |
D | MatrixTest.cpp | 71 EXPECT_EQ(mat.getNumRows(), 5u); in TEST() 78 EXPECT_EQ(mat.getNumRows(), 3u); in TEST() 85 EXPECT_EQ(mat.getNumRows(), 5u); in TEST()
|
/external/llvm-project/mlir/include/mlir/Analysis/Presburger/ |
D | Matrix.h | 51 unsigned getNumRows() const;
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowCursorWindowTest.java | 31 assertThat(window.getNumRows()).isEqualTo(3); in shouldFillWindowWithCursor()
|
/external/OpenCL-CTS/test_conformance/spir/ |
D | run_services.cpp | 316 size_t DataTable::getNumRows() const in getNumRows() function in DataTable 574 for(size_t rowIndex = 0; rowIndex < m_dt.getNumRows(); rowIndex++) in getRequiredExtensions() 595 for(size_t rowIndex = 0; rowIndex < m_dt.getNumRows(); rowIndex++) in isImagesRequired() 617 for(size_t rowIndex = 0; rowIndex < m_dt.getNumRows(); rowIndex++) in isImages3DRequired()
|
D | run_services.h | 169 size_t getNumRows() const;
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | LowerMatrixIntrinsics.cpp | 254 return getNumRows(); in getNumVectors() 265 unsigned getNumRows() const { in getNumRows() function in __anone124444e0111::LowerMatrixIntrinsics::MatrixTy 327 return getNumRows(); in getStride() 442 if (SI.NumRows == M.getNumRows() && SI.NumColumns == M.getNumColumns()) in getMatrix() 878 auto *TileTy = FixedVectorType::get(EltTy, StoreVal.getNumRows() * in storeMatrix() 1022 unsigned R = Result.getNumRows(); in emitMatrixMultiply() 1581 SS << M->second.getNumRows(); in prettyPrintMatrixType()
|
/external/llvm-project/mlir/include/mlir/Dialect/SPIRV/ |
D | SPIRVTypes.h | 448 unsigned getNumRows() const;
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CodeGenTypes.cpp | 95 MT->getNumRows() * MT->getNumColumns()); in ConvertTypeForMem() 693 MT->getNumRows() * MT->getNumColumns()); in ConvertType()
|
D | CGExprScalar.cpp | 733 return MB.CreateMatrixMultiply(Ops.LHS, Ops.RHS, LHSMatTy->getNumRows(), in EmitMul() 1721 E->getBase()->getType()->getAs<ConstantMatrixType>()->getNumRows()); in VisitMatrixSubscriptExpr()
|
/external/llvm-project/mlir/lib/Dialect/SPIRV/ |
D | SPIRVOps.cpp | 3130 if (inputMatrix.getNumRows() != resultMatrix.getNumRows()) in verifyMatrixTimesScalar() 3256 if (inputMatrix.getNumRows() != resultMatrix.getNumColumns()) in verifyTranspose() 3260 if (inputMatrix.getNumColumns() != resultMatrix.getNumRows()) in verifyTranspose() 3282 if (leftMatrix.getNumColumns() != rightMatrix.getNumRows()) in verifyMatrixTimesMatrix() 3302 if (leftMatrix.getNumRows() != resultMatrix.getNumRows()) in verifyMatrixTimesMatrix()
|
D | SPIRVTypes.cpp | 1153 unsigned MatrixType::getNumRows() const { in getNumRows() function in MatrixType 1158 return (getImpl()->columnCount) * getNumRows(); in getNumElements()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LowerMatrixIntrinsics.cpp | 153 size_t getNumRows() const { in getNumRows() function in __anon624e5d420111::LowerMatrixIntrinsics::ColumnMatrixTy 241 if (SI.NumRows == M.getNumRows() && SI.NumColumns == M.getNumColumns()) in getMatrix()
|
/external/deqp-deps/glslang/SPIRV/ |
D | SpvBuilder.cpp | 2413 unsigned int sourceSize = getNumColumns(sourceArg) * getNumRows(sourceArg); in createConstructor() 2421 if (row >= getNumRows(sourceArg)) { in createConstructor() 2473 …if (isMatrix(sources[0]) && getNumColumns(sources[0]) >= numCols && getNumRows(sources[0]) >= numR… in createMatrixConstructor() 2492 if (numRows != getNumRows(matrix)) { in createMatrixConstructor() 2530 int minRows = std::min(numRows, getNumRows(matrix)); in createMatrixConstructor()
|
D | SpvBuilder.h | 276 int getNumRows(Id resultId) const { return getTypeNumRows(getTypeId(resultId)); } in getNumRows() function
|
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/ |
D | SpvBuilder.cpp | 2413 unsigned int sourceSize = getNumColumns(sourceArg) * getNumRows(sourceArg); in createConstructor() 2421 if (row >= getNumRows(sourceArg)) { in createConstructor() 2473 …if (isMatrix(sources[0]) && getNumColumns(sources[0]) >= numCols && getNumRows(sources[0]) >= numR… in createMatrixConstructor() 2492 if (numRows != getNumRows(matrix)) { in createMatrixConstructor() 2530 int minRows = std::min(numRows, getNumRows(matrix)); in createMatrixConstructor()
|
D | SpvBuilder.h | 276 int getNumRows(Id resultId) const { return getTypeNumRows(getTypeId(resultId)); } in getNumRows() function
|
D | GlslangToSpv.cpp | 6260 int numRows = leftMat ? builder.getNumRows(left) : builder.getNumRows(right); in createBinaryMatrixOperation() 6745 int numRows = builder.getNumRows(operand); in createUnaryMatrixOperation()
|
/external/llvm-project/clang/lib/AST/ |
D | ASTStructuralEquivalence.cpp | 851 Mat1->getNumRows() != Mat2->getNumRows() || in IsStructurallyEquivalent()
|
D | TypePrinter.cpp | 766 OS << T->getNumRows() << ", " << T->getNumColumns(); in printConstantMatrixBefore()
|
/external/llvm-project/clang/include/clang/AST/ |
D | TypeProperties.td | 235 let Read = [{ node->getNumRows() }];
|
D | Type.h | 3460 unsigned getNumRows() const { return NumRows; } 3467 return getNumRows() * getNumColumns(); 3481 Profile(ID, getElementType(), getNumRows(), getNumColumns(),
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 2142 if (MatrixParam->getNumRows() != MatrixArg->getNumRows() || in DeduceTemplateArgumentsByTypeMatch() 2215 &ConstantMatrixType::getNumRows, in DeduceTemplateArgumentsByTypeMatch()
|