Lines Matching refs:i
65 for (CeedInt i = 0; i < num_input_fields; i++) { in CeedQFunctionBuildKernel_Hip_ref() local
66 CeedCallBackend(CeedQFunctionFieldGetSize(input_fields[i], &size)); in CeedQFunctionBuildKernel_Hip_ref()
67 code << " const CeedInt size_input_" << i << " = " << size << ";\n"; in CeedQFunctionBuildKernel_Hip_ref()
68 code << " CeedScalar input_" << i << "[size_input_" << i << "];\n"; in CeedQFunctionBuildKernel_Hip_ref()
71 for (CeedInt i = 0; i < num_input_fields; i++) { in CeedQFunctionBuildKernel_Hip_ref() local
72 code << " inputs[" << i << "] = input_" << i << ";\n"; in CeedQFunctionBuildKernel_Hip_ref()
78 for (CeedInt i = 0; i < num_output_fields; i++) { in CeedQFunctionBuildKernel_Hip_ref() local
79 CeedCallBackend(CeedQFunctionFieldGetSize(output_fields[i], &size)); in CeedQFunctionBuildKernel_Hip_ref()
80 code << " const CeedInt size_output_" << i << " = " << size << ";\n"; in CeedQFunctionBuildKernel_Hip_ref()
81 code << " CeedScalar output_" << i << "[size_output_" << i << "];\n"; in CeedQFunctionBuildKernel_Hip_ref()
84 for (CeedInt i = 0; i < num_output_fields; i++) { in CeedQFunctionBuildKernel_Hip_ref() local
85 code << " outputs[" << i << "] = output_" << i << ";\n"; in CeedQFunctionBuildKernel_Hip_ref()
95 for (CeedInt i = 0; i < num_input_fields; i++) { in CeedQFunctionBuildKernel_Hip_ref() local
96 …code << " readQuads<size_input_" << i << ">(q, Q, fields.inputs[" << i << "], input_" << i << "… in CeedQFunctionBuildKernel_Hip_ref()
106 for (CeedInt i = 0; i < num_output_fields; i++) { in CeedQFunctionBuildKernel_Hip_ref() local
107 …code << " writeQuads<size_output_" << i << ">(q, Q, output_" << i << ", fields.outputs[" << i <… in CeedQFunctionBuildKernel_Hip_ref()