Lines Matching refs:nCopies
26 …order, PetscInt formDegree, PetscBool trimmed, PetscInt tensor, PetscInt nCopies, PetscInt *nDofs);
27 …order, PetscInt formDegree, PetscBool trimmed, PetscInt tensor, PetscInt nCopies, PetscInt *nDofs);
29 … order, PetscInt formDegree, PetscBool trimmed, PetscInt tensor, PetscInt nCopies, PetscInt *nDofs) in ExpectedNumDofs_Total() argument
42 *nDofs = rnchooserk * rkm1choosek * nCopies; in ExpectedNumDofs_Total()
49 *nDofs = rnchooserk * rkchoosek * nCopies; in ExpectedNumDofs_Total()
59 *nDofs = nchoosek * rpowk * rp1pownmk * nCopies; in ExpectedNumDofs_Total()
66 *nDofs = nchoosek * rp1pown * nCopies; in ExpectedNumDofs_Total()
82 *nDofs = (tracek * fiber0 + tracekm1 * fiber1) * nCopies; in ExpectedNumDofs_Total()
87 … order, PetscInt formDegree, PetscBool trimmed, PetscInt tensor, PetscInt nCopies, PetscInt *nDofs) in ExpectedNumDofs_Interior() argument
103 *nDofs = rnchooserk * rkchoosek * nCopies; in ExpectedNumDofs_Interior()
117 *nDofs = rnchooserk * rkm1choosek * nCopies; in ExpectedNumDofs_Interior()
124 PetscCall(ExpectedNumDofs_Interior(dim, order, formDegree, trimmed, 0, nCopies, nDofs)); in ExpectedNumDofs_Interior()
139 *nDofs = (tracek * fiber0 + tracekm1 * fiber1) * nCopies; in ExpectedNumDofs_Interior()
155 *nDofs = (tracek * fiber0 + tracekm1 * fiber1) * nCopies; in ExpectedNumDofs_Interior()
160 …etscInt formDegree, PetscBool trimmed, PetscInt tensorCell, PetscBool continuous, PetscInt nCopies) in testLagrange() argument
177 PetscCall(PetscDualSpaceSetNumComponents(sp, nCopies * Nk)); in testLagrange()
181 …t_FMT "\n", dim, order, (PetscInt)trimmed, tensorCell, (PetscInt)continuous, formDegree, nCopies)); in testLagrange()
182 PetscCall(ExpectedNumDofs_Total(dim, order, formDegree, trimmed, tensorCell, nCopies, &exspdim)); in testLagrange()
184 …PetscCall(ExpectedNumDofs_Interior(dim, order, formDegree, trimmed, tensorCell, nCopies, &exspintd… in testLagrange()
334 PetscInt nCopies; in main() local
336 …for (nCopies = 1; nCopies <= 3; nCopies++) PetscCall(testLagrange(lagTable, dm, dim, order, formDe… in main()