Lines Matching refs:fileFormat
195 int fileFormat; member
832 int fileFormat = gmsh->fileFormat; in GmshReadPeriodic_v40() local
840 if (fileFormat == 22 || !binary) { in GmshReadPeriodic_v40()
853 if (fileFormat == 22 || !binary) { in GmshReadPeriodic_v40()
868 if (fileFormat == 22 || !binary) { in GmshReadPeriodic_v40()
888 if (fileFormat == 22 || !binary) { in GmshReadPeriodic_v40()
1118 int snum, fileType, fileFormat, dataSize, checkEndian; in GmshReadMeshFormat() local
1124 fileFormat = (int)roundf(version * 10); in GmshReadMeshFormat()
1126 …PetscCheck(fileFormat >= 22, PETSC_COMM_SELF, PETSC_ERR_SUP, "Gmsh file version %3.1f must be at l… in GmshReadMeshFormat()
1128 …PetscCheck(fileFormat <= 41, PETSC_COMM_SELF, PETSC_ERR_SUP, "Gmsh file version %3.1f must be at m… in GmshReadMeshFormat()
1131 …PetscCheck(fileFormat > 40 || dataSize == sizeof(double), PETSC_COMM_SELF, PETSC_ERR_FILE_UNEXPECT… in GmshReadMeshFormat()
1132 …PetscCheck(fileFormat < 41 || dataSize == sizeof(int) || dataSize == sizeof(PetscInt64), PETSC_COM… in GmshReadMeshFormat()
1133 gmsh->fileFormat = fileFormat; in GmshReadMeshFormat()
1222 switch (gmsh->fileFormat) { in GmshReadEntities()
1236 switch (gmsh->fileFormat) { in GmshReadNodes()
1280 switch (gmsh->fileFormat) { in GmshReadElements()
1356 switch (gmsh->fileFormat) { in GmshReadPeriodic()
1504 int fileFormat; in DMPlexCreateGmshFromFile() local
1516 fileFormat = (int)roundf(version * 10); in DMPlexCreateGmshFromFile()
1518 …PetscCheck(fileFormat >= 22, PETSC_COMM_SELF, PETSC_ERR_SUP, "Gmsh file version %3.1f must be at l… in DMPlexCreateGmshFromFile()
1520 …PetscCheck(fileFormat <= 41, PETSC_COMM_SELF, PETSC_ERR_SUP, "Gmsh file version %3.1f must be at m… in DMPlexCreateGmshFromFile()
1671 if (gmsh->fileFormat >= 40) { in DMPlexCreateGmsh()