Lines Matching refs:snum

6721   int          snum, dim, Nv, Nc, Ncn, Nl;  in DMPlexCreateCellVertexFromFile()  local
6731 snum = sscanf(line, "%d %d %d %d %d", &dim, &Nc, &Nv, &Ncn, &Nl); in DMPlexCreateCellVertexFromFile()
6732 …PetscCheck(snum == 5, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s"… in DMPlexCreateCellVertexFromFile()
6761 snum = sscanf(line, format, &vbuf[0], &vbuf[1]); in DMPlexCreateCellVertexFromFile()
6764 snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2]); in DMPlexCreateCellVertexFromFile()
6767 snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2], &vbuf[3]); in DMPlexCreateCellVertexFromFile()
6770 snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2], &vbuf[3], &vbuf[4], &vbuf[5]); in DMPlexCreateCellVertexFromFile()
6773snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2], &vbuf[3], &vbuf[4], &vbuf[5], &vbuf[6], … in DMPlexCreateCellVertexFromFile()
6778 …PetscCheck(snum == Ncn, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %… in DMPlexCreateCellVertexFromFile()
6825 snum = sscanf(line, "%lg %lg %lg", &x[0], &x[1], &x[2]); in DMPlexCreateCellVertexFromFile()
6826 …PetscCheck(snum == 3, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s"… in DMPlexCreateCellVertexFromFile()
6829 snum = 0; in DMPlexCreateCellVertexFromFile()
6832 snum = sscanf(line, format, &val[0]); in DMPlexCreateCellVertexFromFile()
6835 snum = sscanf(line, format, &val[0], &val[1]); in DMPlexCreateCellVertexFromFile()
6838 snum = sscanf(line, format, &val[0], &val[1], &val[2]); in DMPlexCreateCellVertexFromFile()
6843 …PetscCheck(snum == Nl, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s… in DMPlexCreateCellVertexFromFile()