Lines Matching refs:vec_length
36 CeedInt vec_length; member
64 int CeedQFunctionRegister(const char *name, const char *source, CeedInt vec_length, CeedQFunctionUs… in CeedQFunctionRegister() argument
77 gallery_qfunctions[num_qfunctions].vec_length = vec_length; in CeedQFunctionRegister()
207 int CeedQFunctionGetVectorLength(CeedQFunction qf, CeedInt *vec_length) { in CeedQFunctionGetVectorLength() argument
208 *vec_length = qf->vec_length; in CeedQFunctionGetVectorLength()
677 int CeedQFunctionCreateInterior(Ceed ceed, CeedInt vec_length, CeedQFunctionUser f, const char *sou… in CeedQFunctionCreateInterior() argument
685 CeedCall(CeedQFunctionCreateInterior(delegate, vec_length, f, source, qf)); in CeedQFunctionCreateInterior()
695 (*qf)->vec_length = vec_length; in CeedQFunctionCreateInterior()
743 …CeedCall(CeedQFunctionCreateInterior(ceed, gallery_qfunctions[match_index].vec_length, gallery_qfu… in CeedQFunctionCreateInteriorByName()
1151 CeedInt vec_length; in CeedQFunctionApply() local
1154 CeedCall(CeedQFunctionGetVectorLength(qf, &vec_length)); in CeedQFunctionApply()
1155 CeedCheck(Q % vec_length == 0, CeedQFunctionReturnCeed(qf), CEED_ERROR_DIMENSION, in CeedQFunctionApply()
1156 …ber of quadrature points %" CeedInt_FMT " must be a multiple of %" CeedInt_FMT, Q, qf->vec_length); in CeedQFunctionApply()