Lines Matching refs:rdim
8 int lenInd, bsInd, complexInd, rdim; member
123 ctx->rdim = 1; in PetscViewerHDF5ReadSizes_Private()
125 PetscCall(PetscMalloc1(ctx->rdim, &ctx->dims)); in PetscViewerHDF5ReadSizes_Private()
132 PetscCallHDF5Return(ctx->rdim, H5Sget_simple_extent_dims, (ctx->dataspace, NULL, NULL)); in PetscViewerHDF5ReadSizes_Private()
133 PetscCall(PetscMalloc1(ctx->rdim, &ctx->dims)); in PetscViewerHDF5ReadSizes_Private()
134 PetscCallHDF5Return(ctx->rdim, H5Sget_simple_extent_dims, (ctx->dataspace, ctx->dims, NULL)); in PetscViewerHDF5ReadSizes_Private()
152 ctx->bsInd = ctx->rdim - 2; in PetscViewerHDF5ReadSizes_Private()
153 ctx->complexInd = ctx->rdim - 1; in PetscViewerHDF5ReadSizes_Private()
155 ctx->bsInd = ctx->rdim - 1; in PetscViewerHDF5ReadSizes_Private()
159 …rdim - 1, PetscObjectComm((PetscObject)viewer), PETSC_ERR_FILE_UNEXPECTED, "Calculated block dimen… in PetscViewerHDF5ReadSizes_Private()
205 PetscCall(PetscMalloc2(ctx->rdim, &count, ctx->rdim, &offset)); in PetscViewerHDF5ReadSelectHyperslab_Private()
206 for (i = 0; i < ctx->rdim; i++) { in PetscViewerHDF5ReadSelectHyperslab_Private()
219 PetscCallHDF5Return(*memspace, H5Screate_simple, (ctx->rdim, count, NULL)); in PetscViewerHDF5ReadSelectHyperslab_Private()