Lines Matching refs:offsets
75 CeedScalar *wall_dist = &stg_ctx->data[stg_ctx->offsets.wall_dist]; in ReadStgInflow()
76 CeedScalar *eps = &stg_ctx->data[stg_ctx->offsets.eps]; in ReadStgInflow()
77 CeedScalar *lt = &stg_ctx->data[stg_ctx->offsets.lt]; in ReadStgInflow()
78 …(*ubar)[stg_ctx->nprofs] = (CeedScalar(*)[stg_ctx->nprofs]) & stg_ctx->data[stg_ctx->offsets.ubar]; in ReadStgInflow()
104 …ar(*cij)[stg_ctx->nprofs] = (CeedScalar(*)[stg_ctx->nprofs]) & stg_ctx->data[stg_ctx->offsets.cij]; in ReadStgInflow()
131 CeedScalar *phi = &stg_ctx->data[stg_ctx->offsets.phi]; in ReadStgRand()
132 …ar(*d)[stg_ctx->nmodes] = (CeedScalar(*)[stg_ctx->nmodes]) & stg_ctx->data[stg_ctx->offsets.d]; in ReadStgRand()
133 …sigma)[stg_ctx->nmodes] = (CeedScalar(*)[stg_ctx->nmodes]) & stg_ctx->data[stg_ctx->offsets.sigma]; in ReadStgRand()
183 temp_ctx->offsets.sigma = 0; in GetStgContextData()
184 temp_ctx->offsets.d = nmodes * 3; in GetStgContextData()
185 temp_ctx->offsets.phi = temp_ctx->offsets.d + nmodes * 3; in GetStgContextData()
186 temp_ctx->offsets.kappa = temp_ctx->offsets.phi + nmodes; in GetStgContextData()
187 temp_ctx->offsets.wall_dist = temp_ctx->offsets.kappa + nmodes; in GetStgContextData()
188 temp_ctx->offsets.ubar = temp_ctx->offsets.wall_dist + nprofs; in GetStgContextData()
189 temp_ctx->offsets.cij = temp_ctx->offsets.ubar + nprofs * 3; in GetStgContextData()
190 temp_ctx->offsets.eps = temp_ctx->offsets.cij + nprofs * 6; in GetStgContextData()
191 temp_ctx->offsets.lt = temp_ctx->offsets.eps + nprofs; in GetStgContextData()
192 PetscInt total_num_scalars = temp_ctx->offsets.lt + nprofs; in GetStgContextData()
204 CeedScalar *kappa = &(*stg_ctx)->data[(*stg_ctx)->offsets.kappa]; in GetStgContextData()
205 CeedScalar *wall_dist = &(*stg_ctx)->data[(*stg_ctx)->offsets.wall_dist]; in GetStgContextData()
206 CeedScalar *lt = &(*stg_ctx)->data[(*stg_ctx)->offsets.lt]; in GetStgContextData()