Lines Matching refs:nnodes
213 nnodes: usize, in create_H1()
221 let (topo, ncomp, nnodes, nqpts) = ( in create_H1()
224 i32::try_from(nnodes).unwrap(), in create_H1()
232 nnodes, in create_H1()
252 nnodes: usize, in create_Hdiv()
260 let (topo, ncomp, nnodes, nqpts) = ( in create_Hdiv()
263 i32::try_from(nnodes).unwrap(), in create_Hdiv()
271 nnodes, in create_Hdiv()
291 nnodes: usize, in create_Hcurl()
299 let (topo, ncomp, nnodes, nqpts) = ( in create_Hcurl()
302 i32::try_from(nnodes).unwrap(), in create_Hcurl()
310 nnodes, in create_Hcurl()
475 let mut nnodes = 0; in num_nodes() localVariable
476 unsafe { bind_ceed::CeedBasisGetNumNodes(self.ptr, &mut nnodes) }; in num_nodes()
477 usize::try_from(nnodes).unwrap() in num_nodes()