/picolibc-3.7.0-3.6.0/ |
D | find-copyright | 74 m = re.match(r'(.*<[^>]+>).*', line) 102 line = left_res.match(line).group(1) 104 m = right_res.match(line) 117 if re.match(r'^no support for.*', copyright): 159 if tog.match(comment.text()): 161 if m.match(comment.text()): 176 def pick_split(split,match,use_end): argument 177 if not match: 179 start = match.start() 180 end = match.start() [all …]
|
/picolibc-3.7.0-3.6.0/newlib/testsuite/lib/ |
D | newlib.exp | 47 if [string match $host_triplet $target_triplet] then { 48 if [string match "i686-pc-linux-gnu" $host_triplet] then { 72 if [string match $host_triplet $target_triplet] then { 73 if [string match "i686-pc-linux-gnu" $host_triplet] then { 88 if [string match $host_triplet $target_triplet] then { 89 if [string match "i686-pc-linux-gnu" $host_triplet] then {
|
D | checkoutput.exp | 34 if { ! [string match $expectedval $gotval] } {
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/spu/ |
D | strcspn.c | 45 vec_uchar16 shuffle, match, initial_splat, splat; in strcspn() local 73 match = spu_cmpeq(data1, 0); in strcspn() 79 match = spu_or(match, spu_cmpeq(data1, data2)); in strcspn() 88 cnt = spu_extract(spu_cntlz(spu_gather(match)), 0); in strcspn()
|
D | strpbrk.c | 45 vec_uchar16 shuffle, match, initial_splat, splat, eos; in strpbrk() local 64 eos = match = spu_cmpeq(data1, 0); in strpbrk() 76 match = spu_or(match, spu_cmpeq(data1, data2)); in strpbrk() 85 cnt = spu_cntlz(spu_gather(match)); in strpbrk()
|
D | strspn.c | 45 vec_uchar16 shuffle, match, initial_splat, splat; in strspn() local 66 match = spu_splats((unsigned char)0); in strspn() 78 match = spu_or(match, spu_cmpeq(data1, data2)); in strspn() 87 cnt = spu_extract(spu_cntlz(spu_gather(spu_xor(match, -1))), 0); in strspn()
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/rx/ |
D | memchr.S | 21 sub #1, r1 ; We have found a match, bit now R1 points to the byte after the match. 27 stnz #1, r1 ; If no match was found return NULL. 28 sub #1, r1 ; suntil.b leaves r1 pointing at the address *after* the match.
|
D | strlen.S | 27 sub #1, r1 ; suntil.b leaves r1 pointing to the byte beyond the match.
|
D | strcat.S | 34 sub #1, r1 ; suntil.b leaves r1 pointing to the byte beyond the match.
|
D | strncat.S | 53 beq 1f ; Z flag is set if a match was found.
|
/picolibc-3.7.0-3.6.0/newlib/doc/ |
D | makedocbook.py | 111 if re.match(r'^[A-Z_]{3,}\s*$', l): 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) 337 print(match.groups(), file=sys.stderr) 341 funcdef.text = match.group(1) 343 function.text = match.group(2) 345 if match.group(3).strip() == 'void': 349 for p in re.split(r',(?![^()]*\))', match.group(3)): 362 match2 = re.match(r'(.*)<\[(.*)\]>(.*)', p) [all …]
|
/picolibc-3.7.0-3.6.0/newlib/ |
D | refcontainers.xslt | 6 <!-- Whenever you match any node but refentrycontainer or any attribute --> 7 <xsl:template match="node()[not(self::refentrycontainer)]|@*">
|
/picolibc-3.7.0-3.6.0/newlib/libc/posix/ |
D | engine.c | 55 #define match smat macro 66 #define match lmat macro 70 struct match { struct 93 static char *dissect(struct match *m, char *start, char *stop, sopno startst, sopno stopst); argument 94 static char *backref(struct match *m, char *start, char *stop, sopno startst, sopno stopst, sopno l… 95 static char *fast(struct match *m, char *start, char *stop, sopno startst, sopno stopst); 96 static char *slow(struct match *m, char *start, char *stop, sopno startst, sopno stopst); 108 static void print(struct match *m, char *caption, states st, int ch, FILE *d); 111 static void at(struct match *m, char *title, char *start, char *stop, sopno startst, sopno stopst); 146 struct match mv; in matcher() [all …]
|
/picolibc-3.7.0-3.6.0/newlib/testsuite/newlib.elix/ |
D | elix.exp | 17 if [string match "i\[3456\]86-pc-linux-gnu" $target_triplet] then {
|
/picolibc-3.7.0-3.6.0/newlib/libc/stdlib/ |
D | gdtoa-hexnan.c | 48 match (const char **sp, in match() function
|
D | mprec.h | 332 #define match __match macro 378 int match (const char**, char*);
|
D | strtod.c | 442 if (match(&s,"nf")) { 444 if (!match(&s,"inity")) 455 if (match(&s, "an")) {
|
D | strtodg.c | 602 if (match(&s,"nf")) { in _strtodg_l() 604 if (!match(&s,"inity")) in _strtodg_l() 612 if (match(&s, "an")) { in _strtodg_l()
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/arc/ |
D | strcmp-archs.S | 63 ; A match is found, spot it out
|
/picolibc-3.7.0-3.6.0/newlib/libc/string/ |
D | wcstrings.tex | 33 * wcsspn:: Find initial match in wide-character string
|
D | strings.tex | 64 * strspn:: Find initial match
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/arm/ |
D | memchr.S | 80 @ NOTE: This ifdef MUST match the one in memchr-stub.c
|
/picolibc-3.7.0-3.6.0/cmake/ |
D | TC-microbit.ld | 238 "ERROR: .data/.tdata flash size does not match RAM size");
|
D | TC-arm-none-eabi.ld | 238 "ERROR: .data/.tdata flash size does not match RAM size");
|
/picolibc-3.7.0-3.6.0/doc/ |
D | using.md | 49 FPSCR register set up to match C semantics for rounding.
|