Lines Matching refs:buffer

145     CeedScalar buffer[Q_1D];  in InterpAtPoints2d()  local
155 buffer[i] = 0.0; in InterpAtPoints2d()
157 buffer[i] += chebyshev_x[j] * data.slice[j + i * Q_1D]; in InterpAtPoints2d()
163 r_V[comp] += chebyshev_x[i] * buffer[i]; in InterpAtPoints2d()
175 CeedScalar buffer[Q_1D]; in InterpTransposeAtPoints2d() local
186 buffer[i] = chebyshev_x[i] * r_u; in InterpTransposeAtPoints2d()
197 … && data.t_id_y < Q_1D) atomicAdd_block(&data.slice[jj + ii * Q_1D], chebyshev_x[jj] * buffer[ii]); in InterpTransposeAtPoints2d()
214 CeedScalar buffer[Q_1D]; in GradAtPoints2d() local
226 buffer[i] = 0.0; in GradAtPoints2d()
228 buffer[i] += chebyshev_x[j] * data.slice[j + i * Q_1D]; in GradAtPoints2d()
235 r_V[comp + dim * NUM_COMP] += chebyshev_x[i] * buffer[i]; in GradAtPoints2d()
248 CeedScalar buffer[Q_1D]; in GradTransposeAtPoints2d() local
261 buffer[i] = chebyshev_x[i] * r_u; in GradTransposeAtPoints2d()
273 … && data.t_id_y < Q_1D) atomicAdd_block(&data.slice[jj + ii * Q_1D], chebyshev_x[jj] * buffer[ii]); in GradTransposeAtPoints2d()
295 CeedScalar buffer[Q_1D]; in InterpAtPoints3d() local
310 buffer[i] = 0.0; in InterpAtPoints3d()
312 buffer[i] += chebyshev_x[j] * data.slice[j + i * Q_1D]; in InterpAtPoints3d()
318 r_V[comp] += chebyshev_x[i] * buffer[i] * z; in InterpAtPoints3d()
331 CeedScalar buffer[Q_1D]; in InterpTransposeAtPoints3d() local
347 buffer[i] = chebyshev_x[i] * r_u * z; in InterpTransposeAtPoints3d()
358 … && data.t_id_y < Q_1D) atomicAdd_block(&data.slice[jj + ii * Q_1D], chebyshev_x[jj] * buffer[ii]); in InterpTransposeAtPoints3d()
376 CeedScalar buffer[Q_1D]; in GradAtPoints3d() local
397 buffer[i] = 0.0; in GradAtPoints3d()
399 buffer[i] += chebyshev_x[j] * data.slice[j + i * Q_1D]; in GradAtPoints3d()
408 r_V[comp + dim * NUM_COMP] += chebyshev_x[i] * buffer[i] * zz; in GradAtPoints3d()
422 CeedScalar buffer[Q_1D]; in GradTransposeAtPoints3d() local
445 buffer[i] = chebyshev_x[i] * r_u * zz; in GradTransposeAtPoints3d()
458 … && data.t_id_y < Q_1D) atomicAdd_block(&data.slice[jj + ii * Q_1D], chebyshev_x[jj] * buffer[ii]); in GradTransposeAtPoints3d()