Searched refs:endp (Results 1 – 2 of 2) sorted by relevance
/picolibc-3.7.0-3.6.0/newlib/libc/signal/ |
D | sig2str.c | 231 char *endp; in str2sig() local 243 unsigned long j = strtoul(&str[SPACES_TO_N], &endp, 10); in str2sig() 246 if (*endp == '\0') { in str2sig() 260 unsigned long j = strtoul(&str[SPACES_TO_N], &endp, 10); // and endptr null check in str2sig() 263 if (*endp == '\0') { in str2sig() 286 is_valid_decimal = strtoul(str, &endp, 10); in str2sig() 288 if (*endp != '\0') { in str2sig()
|
/picolibc-3.7.0-3.6.0/newlib/libc/posix/ |
D | engine.c | 76 char *endp; /* end of string -- virtual NUL here */ member 144 char *endp; in matcher() local 225 m->endp = stop; in matcher() 239 endp = fast(m, start, stop, gf, gl); in matcher() 240 if (endp == NULL) { /* a miss */ in matcher() 251 endp = slow(m, m->coldp, stop, gf, gl); in matcher() 252 if (endp != NULL) in matcher() 254 assert(m->coldp < m->endp); in matcher() 272 dp = dissect(m, m->coldp, endp, gf, gl); in matcher() 283 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0); in matcher() [all …]
|