Lines Matching refs:d_v
69 …*restrict indices, const private CeedScalar *restrict r_v, global CeedAtomicScalar *restrict d_v) { in writeDofsOffset1d() argument
77 …atomic_fetch_add_explicit(&d_v[ind + strides_comp * comp], r_v[comp], memory_order_relaxed, memory… in writeDofsOffset1d()
86 global CeedScalar *restrict d_v) { in writeDofsStrided1d() argument
94 d_v[ind + comp * strides_comp] = r_v[comp]; in writeDofsStrided1d()
140 …*restrict indices, const private CeedScalar *restrict r_v, global CeedAtomicScalar *restrict d_v) { in writeDofsOffset2d() argument
149 …atomic_fetch_add_explicit(&d_v[ind + strides_comp * comp], r_v[comp], memory_order_relaxed, memory… in writeDofsOffset2d()
158 global CeedScalar *restrict d_v) { in writeDofsStrided2d() argument
166 for (CeedInt comp = 0; comp < num_comp; ++comp) d_v[ind + comp * strides_comp] += r_v[comp]; in writeDofsStrided2d()
248 …*restrict indices, const private CeedScalar *restrict r_v, global CeedAtomicScalar *restrict d_v) { in writeDofsOffset3d() argument
258 …atomic_fetch_add_explicit(&d_v[ind + strides_comp * comp], r_v[z + comp * P_1D], memory_order_rela… in writeDofsOffset3d()
268 global CeedScalar *restrict d_v) { in writeDofsStrided3d() argument
277 …for (CeedInt comp = 0; comp < num_comp; ++comp) d_v[ind + comp * strides_comp] += r_v[z + comp * P… in writeDofsStrided3d()