Home
last modified time | relevance | path

Searched refs:vcount (Results 1 – 3 of 3) sorted by relevance

/petsc/src/dm/impls/moab/
H A Ddmmbutil.cxx180 PetscInt vcount = 0; in DMMoab_SetElementConnectivity_Private() local
188vcount = DMMoab_SetSimplexElementConnectivity_Private(genCtx, m, offset, corner, subent_conn, conn… in DMMoab_SetElementConnectivity_Private()
189 offset += vcount; in DMMoab_SetElementConnectivity_Private()
193vcount = DMMoab_SetTensorElementConnectivity_Private(genCtx, offset, corner, subent_conn, connect… in DMMoab_SetElementConnectivity_Private()
195 return std::pair<PetscInt, PetscInt>(vcount * subelem, subelem); in DMMoab_SetElementConnectivity_Private()
/petsc/src/dm/impls/plex/
H A Dplexcreate.c3853 PetscInt Njunctions = 0, Ncuts = 0, Npipes[3], vcount; in DMPlexCreateTPSMesh_Internal() local
3867 vcount = 0; in DMPlexCreateTPSMesh_Internal()
3872 vtxCoords[vcount++] = (2 * i - 1) * L; in DMPlexCreateTPSMesh_Internal()
3873 vtxCoords[vcount++] = 2 * j * L + PetscCosReal((2 * l + 1) * PETSC_PI / 4) * L / 2; in DMPlexCreateTPSMesh_Internal()
3874 vtxCoords[vcount++] = 2 * k * L + PetscSinReal((2 * l + 1) * PETSC_PI / 4) * L / 2; in DMPlexCreateTPSMesh_Internal()
3884 vtxCoords[vcount++] = 2 * i * L + PetscSinReal((2 * l + 1) * PETSC_PI / 4) * L / 2; in DMPlexCreateTPSMesh_Internal()
3885 vtxCoords[vcount++] = (2 * j - 1) * L; in DMPlexCreateTPSMesh_Internal()
3886 vtxCoords[vcount++] = 2 * k * L + PetscCosReal((2 * l + 1) * PETSC_PI / 4) * L / 2; in DMPlexCreateTPSMesh_Internal()
3896 vtxCoords[vcount++] = 2 * i * L + PetscCosReal((2 * l + 1) * PETSC_PI / 4) * L / 2; in DMPlexCreateTPSMesh_Internal()
3897 vtxCoords[vcount++] = 2 * j * L + PetscSinReal((2 * l + 1) * PETSC_PI / 4) * L / 2; in DMPlexCreateTPSMesh_Internal()
[all …]
/petsc/src/ksp/pc/impls/bddc/
H A Dbddcprivate.c172 PetscInt *ecount, **eneighs, *vcount, **vneighs; in PCBDDCNedelecSupport() local
507 PetscCall(ISLocalToGlobalMappingGetNodeInfo(vl2g, NULL, &vcount, NULL)); in PCBDDCNedelecSupport()
603 for (i = 0, j = 0; i < nv; i++) j += vcount[i]; in PCBDDCNedelecSupport()
648 PetscCall(PetscSortInt(vcount[i], vneighs[i])); in PCBDDCNedelecSupport()
649 vneighs[i + 1] = vneighs[i] + vcount[i]; in PCBDDCNedelecSupport()
666 PetscInt ord = order, test = ii[i + 1] - ii[i], vc = vcount[i]; in PCBDDCNedelecSupport()
752 if (vcount[i] > 1) PetscCall(PetscBTSet(btvi, i)); in PCBDDCNedelecSupport()
762 PetscCall(ISLocalToGlobalMappingRestoreNodeInfo(vl2g, NULL, &vcount, &vneighs)); in PCBDDCNedelecSupport()