Searched refs:re (Results 1 – 25 of 31) sorted by relevance
12
/picolibc-latest/ |
D | find-copyright | 6 import re 50 regex = re.compile(pat, re.I) 54 regex = re.compile(pat) 57 left_res = re.compile(r'^[^A-Za-z0-9]*(.*)') 58 right_res = re.compile(r'(.*)[ /*\t]$') 63 cpr_line = re.compile(r'copyright.*(20[0-2][0-9]|19[7-9][0-9])', re.I) 64 upper = re.compile(r'[A-Z]') 65 lower = re.compile(r'[a-z]') 66 modified = re.compile(r'Modified') 67 derived = re.compile(r'code is derived from software', re.I) [all …]
|
D | CONTRIBUTING.md | 80 We're using the issue tracker on Github for now; if you have issues,
|
D | picolibc.h.in | 8 /* Use atomics for fgetc/ungetc for re-entrancy */
|
D | meson_options.txt | 165 description: 'use atomics in fgetc/ungetc to make them re-entrant') 259 description: 'use atomics in signal/raise to make them re-entrant')
|
D | README.md | 422 re-ordering code and causing incorrect exception generation. 635 3. Document how re-entrant locking APIs are used. (Thanks to rdiez) 968 2. Make getc/ungetc re-entrant. This feature, which is enabled by 983 are selected. Instead of re-defining the symbols using the C 984 preprocessor, picolibc now re-defines the symbols at link 1136 space definitions. These re-definitions would fail and the default
|
D | picolibc.ld.in | 189 * allocated at runtime. We're slightly abusing that
|
/picolibc-latest/newlib/doc/ |
D | chapter-texi2docbook.py | 14 import re 27 l = re.sub("@file{(.*?)}", "<filename>\\1</filename>", l)
|
D | makedocbook.py | 29 import re 111 if re.match(r'^[A-Z_]{3,}\s*$', l): 202 namelist = map(lambda v: re.sub(r'^and ', r'', v.strip(), 1), namelist) 300 if re.match(r'\s*(#|\[|struct)', l): 304 elif re.match(r'[Ll]ink with', l): 334 match = re.match(r'(.*?)([\w\d]*) ?\((.*)\)', fp) 349 for p in re.split(r',(?![^()]*\))', match.group(3)): 362 match2 = re.match(r'(.*)<\[(.*)\]>(.*)', p) 469 s = re.sub(r'@emph{(.*?)}', r'<emphasis>\1</emphasis>', s) 471 s = re.sub(r'@strong{(.*?)}', r'<emphasis role="strong">\1</emphasis>', s) [all …]
|
/picolibc-latest/newlib/testsuite/newlib.iconv/ |
D | meson.build | 40 # Add CCS tests if the data are internal or we're not using semihosting 41 # or we're using arm semihosting
|
/picolibc-latest/doc/ |
D | testing.md | 6 so all you need is the right compile options. They're mostly the same
|
D | printf.md | 66 If you're using a linker that supports -alias instead of --defsym, 80 If you're using a linker that supports -alias instead of --defsym, 96 If you're using a linker that supports -alias instead of --defsym, 110 If you're using a linker that supports -alias instead of --defsym, 129 If you're using a linker that supports -alias instead of --defsym, 239 exactly re-create the original value. 248 make them re-entrant. Without this option, multiple threads using
|
D | embedsource.md | 52 …aders for libgcc, which we want. And i have found no good poartable way of re-adding the libgcc in…
|
D | locking.md | 39 Picolibc inherits these options from newlib, and they're so
|
D | build.md | 84 | atomic-ungetc | true | Make getc/ungetc re-entrant using atomic operations … 160 compiler, this allows re-entrancy into the library if the run-time 204 picolibc, they're left in the library to help users porting from
|
/picolibc-latest/newlib/libc/stdlib/ |
D | ldtoa.c | 63 int re; member 1290 ldp->re = ldp->rw - 1; in emdnorm() 1297 ldp->re = ldp->rw; in emdnorm() 1304 ldp->re = ldp->rw - 1; in emdnorm() 1312 ldp->re = ldp->rw; in emdnorm() 1319 ldp->re = ldp->rw; in emdnorm() 1326 ldp->re = ldp->rw; in emdnorm() 1329 ldp->rbit[ldp->re] = ldp->rebit; in emdnorm() 1369 if ((s[ldp->re] & ldp->rebit) == 0) in emdnorm()
|
/picolibc-latest/newlib/libc/machine/arc64/ |
D | memcpy.S | 99 ;; re-reads parts of the already transfer data AND the remaining up to
|
D | memcmp.S | 138 ; 2) Then, find the first bit position that they're different: "ffs"
|
D | strlen.S | 300 ; Some operations are re-ordered such that register dependency is
|
D | memchr.S | 371 ; Some operations are re-ordered such that register dependency is reduced,
|
/picolibc-latest/newlib/libc/machine/i960/ |
D | memcmp_ca.S | 156 subo 4,g2,g2 # make up for later re-incrementing
|
D | strncpy_ca.S | 213 lda 0xff,g5 # re-initialize byte extraction mask
|
D | strncat_ca.S | 241 lda 0xff,g5 # re-initialize byte extraction mask
|
/picolibc-latest/hello-world/ |
D | README.md | 138 For arm, we're using the mps2-an385
|
/picolibc-latest/cmake/ |
D | TC-arm-none-eabi.ld | 145 * allocated at runtime. We're slightly abusing that
|
D | TC-microbit.ld | 145 * allocated at runtime. We're slightly abusing that
|
12