Lines Matching refs:topo
708 int CeedBasisCreateH1Fallback(Ceed ceed, CeedElemTopology topo, CeedInt num_comp, CeedInt num_nodes… in CeedBasisCreateH1Fallback() argument
717 CeedCall(CeedBasisGetTopologyDimension(topo, &dim)); in CeedBasisCreateH1Fallback()
718 CeedCall(delegate->BasisCreateH1(topo, dim, P, Q, interp, grad, q_ref, q_weight, basis)); in CeedBasisCreateH1Fallback()
1093 int CeedBasisGetTopologyDimension(CeedElemTopology topo, CeedInt *dim) { in CeedBasisGetTopologyDimension() argument
1094 *dim = (CeedInt)topo >> 16; in CeedBasisGetTopologyDimension()
1553 …CeedElemTopology topo = dim == 1 ? CEED_TOPOLOGY_LINE : dim == 2 ? CEED_TOPOLOGY_QUAD : CEED_TOPOL… in CeedBasisCreateTensorH1() local
1559 (*basis)->topo = topo; in CeedBasisCreateTensorH1()
1673 int CeedBasisCreateH1(Ceed ceed, CeedElemTopology topo, CeedInt num_comp, CeedInt num_nodes, CeedIn… in CeedBasisCreateH1() argument
1682 …CeedCall(CeedBasisCreateH1(delegate, topo, num_comp, num_nodes, num_qpts, interp, grad, q_ref, q_w… in CeedBasisCreateH1()
1691 CeedCall(CeedBasisGetTopologyDimension(topo, &dim)); in CeedBasisCreateH1()
1697 (*basis)->topo = topo; in CeedBasisCreateH1()
1710 CeedCall(ceed->BasisCreateH1(topo, dim, P, Q, interp, grad, q_ref, q_weight, *basis)); in CeedBasisCreateH1()
1732 int CeedBasisCreateHdiv(Ceed ceed, CeedElemTopology topo, CeedInt num_comp, CeedInt num_nodes, Ceed… in CeedBasisCreateHdiv() argument
1741 …CeedCall(CeedBasisCreateHdiv(delegate, topo, num_comp, num_nodes, num_qpts, interp, div, q_ref, q_… in CeedBasisCreateHdiv()
1750 CeedCall(CeedBasisGetTopologyDimension(topo, &dim)); in CeedBasisCreateHdiv()
1756 (*basis)->topo = topo; in CeedBasisCreateHdiv()
1769 CeedCall(ceed->BasisCreateHdiv(topo, dim, P, Q, interp, div, q_ref, q_weight, *basis)); in CeedBasisCreateHdiv()
1791 int CeedBasisCreateHcurl(Ceed ceed, CeedElemTopology topo, CeedInt num_comp, CeedInt num_nodes, Cee… in CeedBasisCreateHcurl() argument
1800 …CeedCall(CeedBasisCreateHcurl(delegate, topo, num_comp, num_nodes, num_qpts, interp, curl, q_ref, … in CeedBasisCreateHcurl()
1809 CeedCall(CeedBasisGetTopologyDimension(topo, &dim)); in CeedBasisCreateHcurl()
1816 (*basis)->topo = topo; in CeedBasisCreateHcurl()
1829 CeedCall(ceed->BasisCreateHcurl(topo, dim, P, Q, interp, curl, q_ref, q_weight, *basis)); in CeedBasisCreateHcurl()
1886 CeedElemTopology topo; in CeedBasisCreateProjection() local
1888 CeedCall(CeedBasisGetTopology(basis_from, &topo)); in CeedBasisCreateProjection()
1891 …CeedCall(CeedBasisCreateH1(ceed, topo, num_comp, num_nodes_from, num_nodes_to, interp_project, gra… in CeedBasisCreateProjection()
1964 CeedElemTopology topo; in CeedBasisView() local
1969 CeedCall(CeedBasisGetTopology(basis, &topo)); in CeedBasisView()
1981 …, "%sCeedBasis in a %s on a %s element\n", tabs, CeedFESpaces[fe_space], CeedElemTopologies[topo]); in CeedBasisView()
2210 int CeedBasisGetTopology(CeedBasis basis, CeedElemTopology *topo) { in CeedBasisGetTopology() argument
2211 *topo = basis->topo; in CeedBasisGetTopology()