Lines Matching refs:i
61 for (CeedInt i = 0; i < num_input_fields; i++) { in CeedQFunctionBuildKernel_Cuda_ref() local
62 CeedCallBackend(CeedQFunctionFieldGetSize(input_fields[i], &size)); in CeedQFunctionBuildKernel_Cuda_ref()
63 code << " const CeedInt size_input_" << i << " = " << size << ";\n"; in CeedQFunctionBuildKernel_Cuda_ref()
64 code << " CeedScalar input_" << i << "[size_input_" << i << "];\n"; in CeedQFunctionBuildKernel_Cuda_ref()
67 for (CeedInt i = 0; i < num_input_fields; i++) { in CeedQFunctionBuildKernel_Cuda_ref() local
68 code << " inputs[" << i << "] = input_" << i << ";\n"; in CeedQFunctionBuildKernel_Cuda_ref()
74 for (CeedInt i = 0; i < num_output_fields; i++) { in CeedQFunctionBuildKernel_Cuda_ref() local
75 CeedCallBackend(CeedQFunctionFieldGetSize(output_fields[i], &size)); in CeedQFunctionBuildKernel_Cuda_ref()
76 code << " const CeedInt size_output_" << i << " = " << size << ";\n"; in CeedQFunctionBuildKernel_Cuda_ref()
77 code << " CeedScalar output_" << i << "[size_output_" << i << "];\n"; in CeedQFunctionBuildKernel_Cuda_ref()
80 for (CeedInt i = 0; i < num_output_fields; i++) { in CeedQFunctionBuildKernel_Cuda_ref() local
81 code << " outputs[" << i << "] = output_" << i << ";\n"; in CeedQFunctionBuildKernel_Cuda_ref()
91 for (CeedInt i = 0; i < num_input_fields; i++) { in CeedQFunctionBuildKernel_Cuda_ref() local
92 …code << " readQuads<size_input_" << i << ">(q, Q, fields.inputs[" << i << "], input_" << i << "… in CeedQFunctionBuildKernel_Cuda_ref()
102 for (CeedInt i = 0; i < num_output_fields; i++) { in CeedQFunctionBuildKernel_Cuda_ref() local
103 …code << " writeQuads<size_output_" << i << ">(q, Q, output_" << i << ", fields.outputs[" << i <… in CeedQFunctionBuildKernel_Cuda_ref()