Lines Matching refs:r_u
29 … const CeedInt *__restrict__ indices, const CeedScalar *__restrict__ d_u, CeedScalar *r_u) { in ReadPoint() argument
33 r_u[comp] = d_u[ind + comp * COMP_STRIDE]; in ReadPoint()
42 … const CeedInt *__restrict__ indices, const CeedScalar *__restrict__ r_u, CeedScalar *d_u) { in WritePoint() argument
47 d_u[ind + comp * COMP_STRIDE] += r_u[comp]; in WritePoint()
74 … const CeedScalar *__restrict__ d_u, CeedScalar *__restrict__ r_u) { in ReadLVecStandard1d() argument
79 for (CeedInt comp = 0; comp < NUM_COMP; comp++) r_u[comp] = d_u[ind + COMP_STRIDE * comp]; in ReadLVecStandard1d()
88 CeedScalar *__restrict__ r_u) { in ReadLVecStrided1d() argument
93 for (CeedInt comp = 0; comp < NUM_COMP; comp++) r_u[comp] = d_u[ind + comp * STRIDES_COMP]; in ReadLVecStrided1d()
196 … const CeedScalar *__restrict__ d_u, CeedScalar *__restrict__ r_u) { in ReadLVecStandard2d() argument
201 for (CeedInt comp = 0; comp < NUM_COMP; comp++) r_u[comp] = d_u[ind + COMP_STRIDE * comp]; in ReadLVecStandard2d()
210 CeedScalar *__restrict__ r_u) { in ReadLVecStrided2d() argument
215 for (CeedInt comp = 0; comp < NUM_COMP; comp++) r_u[comp] = d_u[ind + comp * STRIDES_COMP]; in ReadLVecStrided2d()
326 … const CeedScalar *__restrict__ d_u, CeedScalar *__restrict__ r_u) { in ReadLVecStandard3d() argument
332 …for (CeedInt comp = 0; comp < NUM_COMP; comp++) r_u[z + comp * P_1D] = d_u[ind + COMP_STRIDE * com… in ReadLVecStandard3d()
342 CeedScalar *__restrict__ r_u) { in ReadLVecStrided3d() argument
348 …for (CeedInt comp = 0; comp < NUM_COMP; comp++) r_u[z + comp * P_1D] = d_u[ind + comp * STRIDES_CO… in ReadLVecStrided3d()
359 CeedScalar *__restrict__ r_u) { in ReadEVecSliceStandard3d() argument
364 for (CeedInt comp = 0; comp < NUM_COMP; comp++) r_u[comp] = d_u[ind + COMP_STRIDE * comp]; in ReadEVecSliceStandard3d()
373 CeedScalar *__restrict__ r_u) { in ReadEVecSliceStrided3d() argument
378 for (CeedInt comp = 0; comp < NUM_COMP; comp++) r_u[comp] = d_u[ind + comp * STRIDES_COMP]; in ReadEVecSliceStrided3d()