Lines Matching refs:compstride
162 compstride: usize, in create()
168 let (nelem, elemsize, ncomp, compstride, lsize, mtype) = ( in create()
172 i32::try_from(compstride).unwrap(), in create()
182 compstride, in create()
209 compstride: usize, in create_oriented()
216 let (nelem, elemsize, ncomp, compstride, lsize, mtype) = ( in create_oriented()
220 i32::try_from(compstride).unwrap(), in create_oriented()
230 compstride, in create_oriented()
251 compstride: usize, in create_curl_oriented()
258 let (nelem, elemsize, ncomp, compstride, lsize, mtype) = ( in create_curl_oriented()
262 i32::try_from(compstride).unwrap(), in create_curl_oriented()
272 compstride, in create_curl_oriented()
493 let mut compstride = 0; in comp_stride() localVariable
494 unsafe { bind_ceed::CeedElemRestrictionGetCompStride(self.ptr, &mut compstride) }; in comp_stride()
495 usize::try_from(compstride).unwrap() in comp_stride()