Lines Matching refs:matSize
2139 PetscInt dof, matSize = 0; in DMPlexComputeInterpolatorTree() local
2176 matSize = 0; in DMPlexComputeInterpolatorTree()
2178 matSize = 0; in DMPlexComputeInterpolatorTree()
2184 matSize += numRow * numCol; in DMPlexComputeInterpolatorTree()
2187 matSize = numRowIndices * numColIndices; in DMPlexComputeInterpolatorTree()
2213 matSize = 0; in DMPlexComputeInterpolatorTree()
2214 for (f = 0; f < numFields; f++) matSize += offsets[f + 1] * newOffsets[f + 1]; in DMPlexComputeInterpolatorTree()
2216 matSize = numColIndices * dof; in DMPlexComputeInterpolatorTree()
2220 matSize = 0; in DMPlexComputeInterpolatorTree()
2225 PetscCall(PetscSectionSetDof(rootMatricesSec, p, matSize)); in DMPlexComputeInterpolatorTree()
2236 PetscInt numRowIndices = 0, numColIndices, matSize, dof; in DMPlexComputeInterpolatorTree() local
2253 PetscCall(PetscSectionGetDof(rootMatricesSec, p, &matSize)); in DMPlexComputeInterpolatorTree()
2254 if (matSize) { in DMPlexComputeInterpolatorTree()
2263 if (matSize == 0) { /* don't need to calculate the mat, just the indices */ in DMPlexComputeInterpolatorTree()
2365 } else if (matSize) { in DMPlexComputeInterpolatorTree()
2513 PetscInt matSize; in DMPlexComputeInterpolatorTree() local
2572 PetscCall(PetscSectionGetDof(leafMatricesSec, p, &matSize)); in DMPlexComputeInterpolatorTree()
2573 if (!matSize) { /* incoming matrix is identity */ in DMPlexComputeInterpolatorTree()
2682 PetscInt matSize; in DMPlexComputeInterpolatorTree() local
2714 PetscCall(PetscSectionGetDof(leafMatricesSec, p, &matSize)); in DMPlexComputeInterpolatorTree()
2715 if (!matSize) { /* incoming matrix is identity */ in DMPlexComputeInterpolatorTree()
2783 PetscInt numInRows = matSize / numColIndices; in DMPlexComputeInterpolatorTree()