Home
last modified time | relevance | path

Searched refs:sc (Results 1 – 8 of 8) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libc/string/
Dstrtok_r.c39 register int c, sc; in __strtok_r() local
51 for (spanp = (char *)delim; (sc = *spanp++) != 0;) { in __strtok_r()
52 if (c == sc) { in __strtok_r()
78 if ((sc = *spanp++) == c) { in __strtok_r()
86 } while (sc != 0); in __strtok_r()
Dwcstok.c98 register int c, sc; in wcstok() local
110 for (spanp = delim; (sc = *spanp++) != L'\0';) { in wcstok()
111 if (c == sc) goto cont; in wcstok()
128 if ((sc = *spanp++) == c) { in wcstok()
136 } while (sc != L'\0'); in wcstok()
Dstrcasestr.c99 char c, sc; in strcasestr() local
107 if ((sc = *s++) == 0) in strcasestr()
109 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
/picolibc-3.7.0-3.6.0/newlib/libc/tinystdio/
Dfgetwc.c40 int sc; in fgetwc() local
50 sc = stream->get(stream); in fgetwc()
51 if (sc < 0) in fgetwc()
53 u.c[i] = (char) sc; in fgetwc()
/picolibc-3.7.0-3.6.0/newlib/libm/ld/ld80/
Ds_erfl.c237 sc[] = { variable
406 S = sc[0] + s * (sc[1] + s * (sc[2] + s * (sc[3] + in erfcl()
407 s * (sc[4] + s)))); in erfcl()
/picolibc-3.7.0-3.6.0/newlib/libc/stdlib/
Dldtoa.c73 static int eshift (short unsigned int *x, int sc);
2499 eshift (short unsigned int *x, int sc) in eshift() argument
2504 if (sc == 0) in eshift()
2510 if (sc < 0) in eshift()
2512 sc = -sc; in eshift()
2513 while (sc >= 16) in eshift()
2517 sc -= 16; in eshift()
2520 while (sc >= 8) in eshift()
2524 sc -= 8; in eshift()
2527 while (sc > 0) in eshift()
[all …]
/picolibc-3.7.0-3.6.0/newlib/libc/machine/moxie/
Dsetjmp.S26 # stack frame sc 0x25
/picolibc-3.7.0-3.6.0/newlib/libc/machine/visium/
Dmemset.c670 short int sc = (short int) ((c << 8) + (char) c); in memset() local
671 __short_int_memset (s, sc, n >> 1); in memset()