Home
last modified time | relevance | path

Searched refs:vlength (Results 1 – 5 of 5) sorted by relevance

/libCEED/python/
H A Dceed_qfunction.py79 def __init__(self, ceed, vlength, f, source): argument
93 err_code = lib.CeedQFunctionCreateInterior(self._ceed._pointer[0], vlength,
H A Dceed.py568 def QFunction(self, vlength, f, source): argument
582 return QFunction(self, vlength, f, source)
/libCEED/rust/libceed/src/
H A Dqfunction.rs576 vlength: usize, in create()
598 let vlength = i32::try_from(vlength).unwrap(); in create() localVariable
602 vlength, in create()
H A Dlib.rs1107 vlength: usize, in q_function_interior()
1110 QFunction::create(self, vlength, f) in q_function_interior()
/libCEED/julia/LibCEED.jl/src/
H A DQFunction.jl34 function create_interior_qfunction(c::Ceed, f::UserQFunction; vlength=1) argument
38 C.CeedQFunctionCreateInterior(c[], vlength, f.fptr, "", ref)