Home
last modified time | relevance | path

Searched refs:endptr (Results 1 – 3 of 3) sorted by relevance

/petsc/src/sys/objects/device/impls/cupm/
H A Dcupmdevice.cxx285 char *endptr; in initialize() local
287 initId.first = (PetscInt)strtol(pytorch_rank, &endptr, 10); in initialize()
/petsc/src/sys/objects/
H A Doptions.c2227 char *endptr; in PetscOptionsStringToInt() local
2230 strtolval = strtol(name, &endptr, 10); in PetscOptionsStringToInt()
2231 …PetscCheck((size_t)(endptr - name) == len, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Input strin… in PetscOptionsStringToInt()
2250 static PetscErrorCode PetscStrtod(const char name[], PetscReal *a, char **endptr) in PetscStrtod() argument
2254 *a = strtoflt128(name, endptr); in PetscStrtod()
2256 *a = (PetscReal)strtod(name, endptr); in PetscStrtod()
2261 static PetscErrorCode PetscStrtoz(const char name[], PetscScalar *a, char **endptr, PetscBool *isIm… in PetscStrtoz() argument
2284 *endptr = ptr; in PetscStrtoz()
2305 char *endptr; in PetscOptionsStringToReal() local
2339 PetscCall(PetscStrtod(name, a, &endptr)); in PetscOptionsStringToReal()
[all …]
/petsc/src/dm/impls/plex/cgns/
H A Dplexcgns2.c1509 char *endptr; in PetscStrtoInt() local
1516 strtolval = strtol(name, &endptr, 10); in PetscStrtoInt()
1517 …PetscCheck((size_t)(endptr - name) == len, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Input strin… in PetscStrtoInt()