/picolibc-3.7.0-3.6.0/newlib/libc/stdlib/ |
D | wcstod.c | 149 locale_t loc) in wcstod_l() argument 158 while (iswspace_l(*nptr, loc)) in wcstod_l() 173 if ((len = _wcsnrtombs_l(NULL, &wcp, (size_t) -1, 0, &mbs, loc)) in wcstod_l() 182 _wcsnrtombs_l(buf, &wcp, (size_t) -1, len + 1, &mbs, loc); in wcstod_l() 185 val = strtod_l(buf, &end, loc); in wcstod_l() 194 const char *decimal_point = __get_numeric_locale(loc)->decimal_point; in wcstod_l() 221 locale_t loc) in wcstof_l() argument 230 while (iswspace_l(*nptr, loc)) in wcstof_l() 245 if ((len = _wcsnrtombs_l(NULL, &wcp, (size_t) -1, 0, &mbs, loc)) in wcstof_l() 254 _wcsnrtombs_l(buf, &wcp, (size_t) -1, len + 1, &mbs, loc); in wcstof_l() [all …]
|
D | wcstold.c | 44 locale_t loc) in wcstold_l() argument 48 return wcstod_l(nptr, endptr, loc); in wcstold_l() 65 if ((len = _wcsnrtombs_l (NULL, &wcp, (size_t) -1, 0, &mbs, loc)) in wcstold_l() 77 _wcsnrtombs_l (buf, &wcp, (size_t) -1, len + 1, &mbs, loc); in wcstold_l() 79 val = strtold_l (buf, &end, loc); in wcstold_l() 88 const char *decimal_point = __get_numeric_locale(loc)->decimal_point; in wcstold_l()
|
D | strtoull.c | 128 char **__restrict endptr, int base, locale_t loc) in _strtoull_l() argument 141 } while (isspace_l(c, loc)); in _strtoull_l() 190 locale_t loc) in strtoull_l() argument 192 return _strtoull_l (s, ptr, base, loc); in strtoull_l()
|
D | strtoll.c | 132 char **__restrict endptr, int base, locale_t loc) in _strtoll_l() argument 147 } while (isspace_l(c, loc)); in _strtoll_l() 215 locale_t loc) in strtoll_l() argument 217 return _strtoll_l (s, ptr, base, loc); in strtoll_l()
|
D | strtol.c | 124 char **__restrict endptr, int base, locale_t loc) in _strtol_l() argument 146 } while (isspace_l(c, loc)); in _strtol_l() 216 locale_t loc) in strtol_l() argument 218 return _strtol_l (s, ptr, base, loc); in strtol_l()
|
D | strtorx.c | 102 _strtorx_l(s, sp, rounding, L, loc) const char *s; char **sp; int rounding; void *L; locale_t loc; in _strtorx_l() argument 105 locale_t loc) 120 k = _strtodg_l(s, sp, fpi, &exp, bits, loc);
|
D | wcstoimax.c | 61 wchar_t ** __restrict endptr, int base, locale_t loc) in wcstoimax_l() argument 74 } while (iswspace_l(c, loc)); in wcstoimax_l() 100 if (iswdigit_l(c, loc)) in wcstoimax_l() 101 c = digittoint_l(c, loc); in wcstoimax_l()
|
D | wcstoumax.c | 60 wchar_t ** __restrict endptr, int base, locale_t loc) in wcstoumax_l() argument 73 } while (iswspace_l(c, loc)); in wcstoumax_l() 98 if (iswdigit_l(c, loc)) in wcstoumax_l() 99 c = digittoint_l(c, loc); in wcstoumax_l()
|
D | strtold.c | 63 strtold_l (const char *__restrict s00, char **__restrict se, locale_t loc) in strtold_l() argument 67 _strtorx_l (s00, se, FLT_ROUNDS, &result, loc); in strtold_l()
|
D | strtoul.c | 132 locale_t loc) in strtoul_l() argument 145 } while (isspace_l(c, loc)); in strtoul_l()
|
D | wcsnrtombs.c | 77 size_t len, mbstate_t *ps, struct __locale_t *loc) in _wcsnrtombs_l() argument 104 int bytes = loc->wctomb (buff, *pwcs, ps); in _wcsnrtombs_l()
|
D | strtoimax.c | 60 locale_t loc) in strtoimax_l() argument 75 } while (isspace_l(c, loc)); in strtoimax_l()
|
D | strtoumax.c | 60 char ** __restrict endptr, int base, locale_t loc) in strtoumax_l() argument 73 } while (isspace_l(c, loc)); in strtoumax_l()
|
D | wcstol.c | 134 int base, locale_t loc) in wcstol_l() argument 149 } while (iswspace_l(c, loc)); in wcstol_l()
|
D | wcstoll.c | 133 int base, locale_t loc) in wcstoll_l() argument 148 } while (iswspace_l(c, loc)); in wcstoll_l()
|
/picolibc-3.7.0-3.6.0/newlib/libc/tinystdio/ |
D | strtod_l.c | 41 locale_t loc) in strtod_l() argument 43 (void) loc; in strtod_l() 53 extern long double strtold_l(const char *, char **, locale_t loc) __attribute__ ((__alias__ ("strto… 56 strtold_l (const char * nptr, char ** endptr, locale_t loc) in strtold_l() argument 58 (void) loc; in strtold_l() 59 return (long double) strtod_l(nptr, endptr, loc); in strtold_l()
|
D | strtof_l.c | 41 locale_t loc) in strtof_l() argument 43 (void) loc; in strtof_l()
|
D | strtol_l.c | 42 locale_t loc) in strtol_l() argument 44 (void) loc; in strtol_l()
|
D | strtold_l.c | 43 locale_t loc) in strtold_l() argument 45 (void) loc; in strtold_l()
|
D | strtoll_l.c | 42 locale_t loc) in strtoll_l() argument 44 (void) loc; in strtoll_l()
|
D | strtoul_l.c | 42 locale_t loc) in strtoul_l() argument 44 (void) loc; in strtoul_l()
|
D | strtoull_l.c | 42 locale_t loc) in strtoull_l() argument 44 (void) loc; in strtoull_l()
|
/picolibc-3.7.0-3.6.0/newlib/libc/xdr/ |
D | xdr_reference.c | 65 caddr_t loc = *pp; in xdr_reference() local 68 if (loc == NULL) in xdr_reference() 75 *pp = loc = (caddr_t) mem_alloc (size); in xdr_reference() 76 if (loc == NULL) in xdr_reference() 82 memset (loc, 0, size); in xdr_reference() 89 stat = (*proc) (xdrs, loc, LASTUNSIGNED); in xdr_reference() 93 mem_free (loc, size); in xdr_reference()
|
/picolibc-3.7.0-3.6.0/newlib/libc/locale/ |
D | locale.c | 467 __loadlocale (struct __locale_t *loc, int category, char *new_locale) in __loadlocale() argument 493 if (!strcmp (new_locale, loc->categories[category])) in __loadlocale() 494 return loc->categories[category]; in __loadlocale() 904 strcpy (loc->ctype_codeset, charset); in __loadlocale() 905 loc->mb_cur_max[0] = mbc_max; in __loadlocale() 910 loc->wctomb = l_wctomb; in __loadlocale() 911 loc->mbtowc = l_mbtowc; in __loadlocale() 912 __set_ctype (loc, charset); in __loadlocale() 921 loc->cjk_lang = cjkwide || in __loadlocale() 924 loc->cjk_lang = -1; /* Disable CJK dual-width */ in __loadlocale() [all …]
|
/picolibc-3.7.0-3.6.0/newlib/libc/ctype/ |
D | ctype_.c | 128 __set_ctype (struct __locale_t *loc, const char *charset) in __set_ctype() argument 170 loc->ctype_ptr = ctype_ptr + 127; in __set_ctype() 172 loc->ctype_ptr = ctype_ptr; in __set_ctype()
|