Home
last modified time | relevance | path

Searched refs:endp (Results 1 – 2 of 2) sorted by relevance

/picolibc-latest/newlib/libc/signal/
Dsig2str.c232 char *endp; in str2sig() local
244 unsigned long j = strtoul(&str[SPACES_TO_N], &endp, 10); in str2sig()
247 if (*endp == '\0') { in str2sig()
261 unsigned long j = strtoul(&str[SPACES_TO_N], &endp, 10); // and endptr null check in str2sig()
264 if (*endp == '\0') { in str2sig()
287 is_valid_decimal = strtoul(str, &endp, 10); in str2sig()
289 if (*endp != '\0') { in str2sig()
/picolibc-latest/newlib/libc/posix/
Dengine.c74 char *endp; /* end of string -- virtual NUL here */ member
142 char *endp; in matcher() local
223 m->endp = stop; in matcher()
237 endp = fast(m, start, stop, gf, gl); in matcher()
238 if (endp == NULL) { /* a miss */ in matcher()
249 endp = slow(m, m->coldp, stop, gf, gl); in matcher()
250 if (endp != NULL) in matcher()
252 assert(m->coldp < m->endp); in matcher()
270 dp = dissect(m, m->coldp, endp, gf, gl); in matcher()
281 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0); in matcher()
[all …]