Lines Matching refs:post
47 CeedInt post = 1; in Interp() local
55 const CeedInt writeLen = pre * post * Q; in Interp()
59 const CeedInt c = k % post; in Interp()
60 const CeedInt j = (k / post) % Q; in Interp()
61 const CeedInt a = k / (post * Q); in Interp()
64 …nt b = 0; b < P; b++) v_k += s_interp_1d[j * stride_0 + b * stride_1] * in[(a * P + b) * post + c]; in Interp()
68 post *= Q; in Interp()
108 CeedInt post = 1; in Grad() local
119 const CeedInt writeLen = pre * post * Q; in Grad()
123 const CeedInt c = k % post; in Grad()
124 const CeedInt j = (k / post) % Q; in Grad()
125 const CeedInt a = k / (post * Q); in Grad()
128 …or (CeedInt b = 0; b < P; b++) v_k += op[j * stride_0 + b * stride_1] * in[(a * P + b) * post + c]; in Grad()
132 post *= Q; in Grad()