Lines Matching refs:offsets
71 CeedScalar *wall_dist = &stg_ctx->data[stg_ctx->offsets.wall_dist]; in ReadStgInflow()
72 CeedScalar *eps = &stg_ctx->data[stg_ctx->offsets.eps]; in ReadStgInflow()
73 CeedScalar *lt = &stg_ctx->data[stg_ctx->offsets.lt]; in ReadStgInflow()
74 …(*ubar)[stg_ctx->nprofs] = (CeedScalar(*)[stg_ctx->nprofs]) & stg_ctx->data[stg_ctx->offsets.ubar]; in ReadStgInflow()
100 …ar(*cij)[stg_ctx->nprofs] = (CeedScalar(*)[stg_ctx->nprofs]) & stg_ctx->data[stg_ctx->offsets.cij]; in ReadStgInflow()
127 CeedScalar *phi = &stg_ctx->data[stg_ctx->offsets.phi]; in ReadStgRand()
128 …ar(*d)[stg_ctx->nmodes] = (CeedScalar(*)[stg_ctx->nmodes]) & stg_ctx->data[stg_ctx->offsets.d]; in ReadStgRand()
129 …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()
203 CeedScalar *kappa = &(*stg_ctx)->data[(*stg_ctx)->offsets.kappa]; in GetStgContextData()
204 CeedScalar *wall_dist = &(*stg_ctx)->data[(*stg_ctx)->offsets.wall_dist]; in GetStgContextData()
205 CeedScalar *lt = &(*stg_ctx)->data[(*stg_ctx)->offsets.lt]; in GetStgContextData()