Lines Matching refs:size
74 pub fn size(&self) -> usize { in size() method
75 let mut size = 0; in size() localVariable
77 bind_ceed::CeedQFunctionFieldGetSize(self.ptr, &mut size); in size()
79 usize::try_from(size).unwrap() in size()
736 size: usize, in input()
741 self.trampoline_data.input_sizes[idx] = size; in input()
743 let (size, emode) = ( in input()
744 i32::try_from(size).unwrap(), in input()
748 bind_ceed::CeedQFunctionAddInput(self.qf_core.ptr, name_c.as_ptr(), size, emode) in input()
785 size: usize, in output()
790 self.trampoline_data.output_sizes[idx] = size; in output()
792 let (size, emode) = ( in output()
793 i32::try_from(size).unwrap(), in output()
797 bind_ceed::CeedQFunctionAddOutput(self.qf_core.ptr, name_c.as_ptr(), size, emode) in output()