/picolibc-3.7.0-3.6.0/newlib/libc/stdlib/ |
D | strtoumax.c | 66 int neg = 0, any, cutlim; in strtoumax_l() local 90 acc = any = 0; in strtoumax_l() 107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoumax_l() 108 any = -1; in strtoumax_l() 110 any = 1; in strtoumax_l() 115 if (any < 0) { in strtoumax_l() 118 } else if (!any) { in strtoumax_l() 124 *endptr = (char *)(any ? s - 1 : nptr); in strtoumax_l()
|
D | strtoul.c | 138 register int neg = 0, any, cutlim; in strtoul_l() local 161 for (acc = 0, any = 0;; c = *s++) { in strtoul_l() 172 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul_l() 173 any = -1; in strtoul_l() 175 any = 1; in strtoul_l() 180 if (any < 0) { in strtoul_l() 186 *endptr = (char *) (any ? (char *)s - 1 : nptr); in strtoul_l()
|
D | strtoull.c | 134 register int neg = 0, any, cutlim; in _strtoull_l() local 157 for (acc = 0, any = 0;; c = *s++) { in _strtoull_l() 168 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in _strtoull_l() 169 any = -1; in _strtoull_l() 171 any = 1; in _strtoull_l() 176 if (any < 0) { in _strtoull_l() 182 *endptr = (char *) (any ? (char *)s - 1 : nptr); in _strtoull_l()
|
D | wcstoimax.c | 67 int neg = 0, any, cutlim; in wcstoimax_l() local 91 acc = any = 0; in wcstoimax_l() 114 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstoimax_l() 115 any = -1; in wcstoimax_l() 117 any = 1; in wcstoimax_l() 122 if (any < 0) { in wcstoimax_l() 125 } else if (!any) { in wcstoimax_l() 131 *endptr = (wchar_t *)(any ? s - 1 : nptr); in wcstoimax_l()
|
D | wcstoumax.c | 66 int neg = 0, any, cutlim; in wcstoumax_l() local 90 acc = any = 0; in wcstoumax_l() 112 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstoumax_l() 113 any = -1; in wcstoumax_l() 115 any = 1; in wcstoumax_l() 120 if (any < 0) { in wcstoumax_l() 123 } else if (!any) { in wcstoumax_l() 129 *endptr = (wchar_t *)(any ? s - 1 : nptr); in wcstoumax_l()
|
D | strtoimax.c | 66 int neg = 0, any = 0, cutlim; in strtoimax_l() local 128 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoimax_l() 129 any = -1; in strtoimax_l() 131 any = 1; in strtoimax_l() 136 if (any < 0) { in strtoimax_l() 139 } else if (!any) { in strtoimax_l() 145 *endptr = (char *)(any ? s - 1 : nptr); in strtoimax_l()
|
D | strtoll.c | 138 register int neg = 0, any, cutlim; in _strtoll_l() local 182 for (acc = 0, any = 0;; c = *s++) { in _strtoll_l() 193 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in _strtoll_l() 194 any = -1; in _strtoll_l() 196 any = 1; in _strtoll_l() 201 if (any < 0) { in _strtoll_l() 207 *endptr = (char *) (any ? (char *)s - 1 : nptr); in _strtoll_l()
|
D | wcstol.c | 140 register int neg = 0, any, cutlim; in wcstol_l() local 184 for (acc = 0, any = 0;; c = *s++) { in wcstol_l() 195 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstol_l() 196 any = -1; in wcstol_l() 198 any = 1; in wcstol_l() 203 if (any < 0) { in wcstol_l() 209 *endptr = (wchar_t *) (any ? s - 1 : nptr); in wcstol_l()
|
D | wcstoll.c | 139 register int neg = 0, any, cutlim; in wcstoll_l() local 183 for (acc = 0, any = 0;; c = *s++) { in wcstoll_l() 194 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstoll_l() 195 any = -1; in wcstoll_l() 197 any = 1; in wcstoll_l() 202 if (any < 0) { in wcstoll_l() 208 *endptr = (wchar_t *) (any ? s - 1 : nptr); in wcstoll_l()
|
D | wcstoul.c | 140 register int neg = 0, any, cutlim; in wcstoul_l() local 163 for (acc = 0, any = 0;; c = *s++) { in wcstoul_l() 174 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstoul_l() 175 any = -1; in wcstoul_l() 177 any = 1; in wcstoul_l() 182 if (any < 0) { in wcstoul_l() 188 *endptr = (wchar_t *) (any ? s - 1 : nptr); in wcstoul_l()
|
D | strtol.c | 130 register int neg = 0, any, cutlim; in _strtol_l() local 183 for (acc = 0, any = 0;; c = *s++) { in _strtol_l() 194 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in _strtol_l() 195 any = -1; in _strtol_l() 197 any = 1; in _strtol_l() 202 if (any < 0) { in _strtol_l() 208 *endptr = (char *) (any ? (char *)s - 1 : nptr); in _strtol_l()
|
D | wcstoull.c | 151 register int neg = 0, any, cutlim; in wcstoull_l() local 178 for (acc = 0, any = 0;; c = *s++) { in wcstoull_l() 189 if (any < 0 || acc > cutoff || (acc == cutoff && (int) c > cutlim)) in wcstoull_l() 190 any = -1; in wcstoull_l() 192 any = 1; in wcstoull_l() 197 if (any < 0) { in wcstoull_l() 203 *endptr = (wchar_t *) (any ? s - 1 : nptr); in wcstoull_l()
|
/picolibc-3.7.0-3.6.0/newlib/ |
D | refcontainers.xslt | 6 <!-- Whenever you match any node but refentrycontainer or any attribute --> 10 <!-- Including any attributes it has and any child nodes -->
|
/picolibc-3.7.0-3.6.0/ |
D | COPYING.GPL2 | 16 Foundation's software and to any other program whose authors commit to 47 that any problems introduced by others will not reflect on the original 50 Finally, any free program is threatened constantly by software 53 program proprietary. To prevent this, we have made it clear that any 62 0. This License applies to any program or other work which contains 65 refers to any such program or work, and a "work based on the Program" 66 means either the Program or any derivative work under copyright law: 80 source code as you receive it, in any medium, provided that you 83 notices that refer to this License and to the absence of any warranty; 84 and give any other recipients of the Program a copy of this License [all …]
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/crx/ |
D | setjmp.S | 7 # and license this software and its documentation for any purpose, provided # 9 # notice is included verbatim in any distributions. No written agreement, # 10 # license, or royalty fee is required for any of the authorized uses. #
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/cr16/ |
D | setjmp.S | 7 # and license this software and its documentation for any purpose, provided # 9 # notice is included verbatim in any distributions. No written agreement, # 10 # license, or royalty fee is required for any of the authorized uses. #
|
/picolibc-3.7.0-3.6.0/doc/ |
D | using.md | 5 be linked statically along with any operating system and application 81 * The minimal crt0 variant doesn't call any constructors 111 any of the target hardware has been set up. 128 The default `crt0` version provided by Picolibc calls any constructors 140 In a smaller environment which is not using any constructors (or any
|
/picolibc-3.7.0-3.6.0/scripts/ |
D | cross-avr.txt | 2 # Meson 0.53.2 doesn't use any cflags when doing basic compiler tests,
|
D | run-m68k | 88 CPU=any
|
D | cross-clang-msp430.txt | 2 # Meson 0.53.2 doesn't use any cflags when doing basic compiler tests,
|
D | cross-msp430.txt | 2 # Meson 0.53.2 doesn't use any cflags when doing basic compiler tests,
|
D | cross-xtensa-espressif_esp32_zephyr-elf.txt | 2 # Meson 0.53.2 doesn't use any cflags when doing basic compiler tests,
|
D | cross-xtensa-espressif_esp32s2_zephyr-elf.txt | 2 # Meson 0.53.2 doesn't use any cflags when doing basic compiler tests,
|
D | cross-xtensa-intel_apl_adsp_zephyr-elf.txt | 2 # Meson 0.53.2 doesn't use any cflags when doing basic compiler tests,
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/h8300/ |
D | memset.S | 32 ; Account for any excess bytes and words that will be copied after
|