/picolibc-latest/newlib/libc/machine/ft32/ |
D | setjmp.S | 24 pop.l $r5 # return address in $r5 25 sti.l $r0,0,$r5 26 sti.l $r0,4,$r6 27 sti.l $r0,8,$r7 28 sti.l $r0,12,$r8 29 sti.l $r0,16,$r9 30 sti.l $r0,20,$r10 31 sti.l $r0,24,$r11 32 sti.l $r0,28,$r12 33 sti.l $r0,32,$r13 [all …]
|
/picolibc-latest/newlib/libc/machine/or1k/ |
D | setjmp.S | 34 l.sw 0(r3), r1 35 l.sw 4(r3), r2 37 l.sw 8(r3), r9 41 l.sw 12(r3), r14 42 l.sw 16(r3), r16 43 l.sw 20(r3), r18 44 l.sw 24(r3), r20 45 l.sw 28(r3), r22 46 l.sw 32(r3), r24 47 l.sw 36(r3), r26 [all …]
|
/picolibc-latest/newlib/doc/ |
D | chapter-texi2docbook.py | 23 for l in sys.stdin.readlines(): 24 l = l.rstrip() 27 l = re.sub("@file{(.*?)}", "<filename>\\1</filename>", l) 29 if l.startswith("@node"): 30 l = l.replace("@node", "", 1) 31 l = l.strip() 33 …print('<chapter id="%s_chapter" xmlns:xi="http://www.w3.org/2001/XInclude">' % l.lower().replace('… 38 print('<section id="%s">' % l) 40 elif l.startswith("@chapter "): 41 l = l.replace("@chapter ", "", 1) [all …]
|
D | makedocbook.py | 110 def iscommand(l): argument 111 if re.match(r'^[A-Z_]{3,}\s*$', l): 120 for l in content.splitlines(): 121 if iscommand(l): 123 command = l.rstrip() 126 text = text + l + '\n' 162 def function(c, l): argument 166 l = l.strip() 168 print('FUNCTION %s' % l, file=sys.stderr) 172 if ';' in l: [all …]
|
/picolibc-latest/newlib/libc/iconv/lib/ |
D | endian.h | 35 # define ICONV_BETOHL(l) \ argument 36 ((((l) << 24) & 0xFF000000) | \ 37 (((l) << 8) & 0x00FF0000) | \ 38 (((l) >> 8) & 0x0000FF00) | \ 39 (((l) >> 24) & 0x000000FF)) 42 # define ICONV_LETOHL(l) (l) argument 45 # define ICONV_HTOLEL(l) ICONV_LETOHL (l) argument 47 # define ICONV_HTOBEL(l) ICONV_BETOHL (l) argument 52 # define ICONV_BETOHL(l) (l) argument 57 # define ICONV_LETOHL(l) \ argument [all …]
|
D | aliasesi.c | 98 int l; in find_alias() local 105 l = strlen (alias); in find_alias() 107 if (len < l || (p = strnstr (ptable, alias, len)) == NULL) in find_alias() 112 && (p+l == table_end || isspace (*(p+l)) || *(p+l) == '\n'))) in find_alias() 114 ptable = p + l; in find_alias()
|
/picolibc-latest/newlib/libc/machine/visium/ |
D | setjmp.S | 36 write.l 0(r1),r11 37 write.l 1(r1),r12 38 write.l 2(r1),r13 39 write.l 3(r1),r14 40 write.l 4(r1),r15 41 write.l 5(r1),r16 42 write.l 6(r1),r17 43 write.l 7(r1),r18 44 write.l 8(r1),r19 45 write.l 9(r1),r21 [all …]
|
/picolibc-latest/newlib/libc/machine/moxie/ |
D | setjmp.S | 34 st.l ($r0), $r6 35 sto.l 0x04($r0), $r7 36 sto.l 0x08($r0), $r8 37 sto.l 0x0c($r0), $r9 38 sto.l 0x10($r0), $r10 39 sto.l 0x14($r0), $sp 40 sto.l 0x18($r0), $fp 41 ldo.l $r1, 0x00($fp) 42 sto.l 0x1c($r0), $r1 43 ldo.l $r1, 0x04($fp) [all …]
|
/picolibc-latest/newlib/libc/machine/m68k/ |
D | memcpy.S | 45 move.l 4(sp),a0 | dest ptr 46 move.l 8(sp),a1 | src ptr 47 move.l 12(sp),d1 | len 48 cmp.l #8,d1 | if fewer than 8 bytes to transfer, 53 move.l a0,d0 54 and.l #3,d0 56 move.l a1,d0 57 and.l #3,d0 61 move.l a0,d0 | copy of dest 62 neg.l d0 [all …]
|
D | memset.S | 46 move.l 4(sp),a0 | dest ptr 47 move.l 8(sp),d0 | value 48 move.l 12(sp),d1 | len 49 cmp.l #16,d1 52 move.l d2,-(sp) | need a register 54 lsl.l #8,d0 60 move.l a0,d2 | copy of src 61 neg.l d2 | 1 2 3 ==> 3 2 1 62 and.l #3,d2 65 sub.l d2,d1 | fix length [all …]
|
/picolibc-latest/newlib/libc/machine/h8300/ |
D | setjmp.S | 28 mov.l er7,@er0+ 29 mov.l er6,@er0+ 30 mov.l er5,@er0+ 31 mov.l er4,@er0+ 32 mov.l @sp,@er0 33 sub.l er0,er0 35 mov.l er7,@er0 36 mov.l er6,@(4,er0) 37 mov.l er5,@(8,er0) 38 mov.l er4,@(12,er0) [all …]
|
D | defines.h | 84 #define MOVP mov.l /* pointers are 32 bits */ 85 #define ADDP add.l 86 #define CMPP cmp.l 87 #define PUSHP push.l 88 #define POPP pop.l 127 #define MOVP mov.l /* pointers are 32 bits */ 128 #define ADDP add.l 129 #define CMPP cmp.l 130 #define PUSHP push.l 131 #define POPP pop.l
|
D | h8sx_strcpy.S | 11 stm.l er4-er6,@-er7 12 mov.l er0,er6 13 mov.l er1,er5 16 2: rts/l er4-er6
|
/picolibc-latest/newlib/libc/include/ |
D | ctype.h | 97 int isalnum_l (int c, locale_t l); 98 int isalpha_l (int c, locale_t l); 99 int isblank_l (int c, locale_t l); 100 int iscntrl_l (int c, locale_t l); 101 int isdigit_l (int c, locale_t l); 102 int isgraph_l (int c, locale_t l); 103 int islower_l (int c, locale_t l); 104 int isprint_l (int c, locale_t l); 105 int ispunct_l (int c, locale_t l); 106 int isspace_l (int c, locale_t l); [all …]
|
/picolibc-latest/newlib/libc/machine/rx/ |
D | setjmp.S | 42 mov.l r0, [r1] ; save all the general registers 43 mov.l r1, 0x4[r1] ; longjmp won't use this, but someone else might. 74 mov.l 0x40[r1], r2 ; Get the saved PC 75 mov.l r2, [r0] ; Overwrite the old return address 77 mov.l 0x3c[r1], r15 78 mov.l 0x38[r1], r14 79 mov.l 0x34[r1], r13 80 mov.l 0x30[r1], r12 81 mov.l 0x2c[r1], r11 82 mov.l 0x28[r1], r10 [all …]
|
/picolibc-latest/newlib/libc/iconv/ces/ |
D | mkdeps.pl | 129 for (my $ln = 1; my $l = <INFILE>; $ln += 1) 132 next if $l =~ m/^#.*$/ or $l =~ m/^\s*$/; 135 $l =~ s/^(.*)\n$/$1/, $l =~ s/^(.*)\r$/$1/; 138 err "(input file line $ln) Unexpected marker: \"$l\". ${marker_section} " 140 if $l !~ m/^$marker_section(\s+(\S*)\s*)?$/; 154 for (; $l = <INFILE>; $ln += 1) 157 next if $l =~ m/^#.*$/ or $l =~ m/^$/; 159 $l =~ s/^(.*)\n$/$1/, $l =~ s/^(.*)\r$/$1/; 161 last if $l =~ m/^$marker_section_end$/; 163 push @{$sections{$sect_name}}, $l; [all …]
|
/picolibc-latest/newlib/libc/string/ |
D | strverscmp.c | 65 const unsigned char *l = (const void *)l0; in strverscmp() local 72 for (dp=i=0; l[i]==r[i]; i++) { in strverscmp() 73 int c = l[i]; in strverscmp() 79 if (l[dp]<'1' + 9U && r[dp]<'1' + 9U) { in strverscmp() 82 for (j=i; isdigit(l[j]); j++) in strverscmp() 85 } else if (z && dp<i && (isdigit(l[i]) || isdigit(r[i]))) { in strverscmp() 88 return (unsigned char)(l[i]-'0') - (unsigned char)(r[i]-'0'); in strverscmp() 91 return l[i] - r[i]; in strverscmp()
|
/picolibc-latest/newlib/libc/machine/h8500/ |
D | cmpsi.c | 27 long l; member 37 long l; member 45 u.l = arga; in __cmpsi2() 66 u.l = arga; in __ucmpsi2() 89 long l; member 99 long l; member 108 a.l = arga; in __cmppsi2() 109 b.l = argb; in __cmppsi2() 130 a.l = arga; in __ucmppsi2() 131 b.l = argb; in __ucmppsi2()
|
/picolibc-latest/test/libc-testsuite/ |
D | strtol.c | 50 long l; in test_strtol() local 60 TEST(l, atol("2147483647"), 2147483647L, "max 32bit signed %ld != %ld"); in test_strtol() 62 TEST(l, strtol("2147483647", 0, 0), 2147483647L, "max 32bit signed %ld != %ld"); in test_strtol() 67 TEST(l, strtol(s="2147483648", &c, 0), 2147483647L, "uncaught overflow %ld != %ld"); in test_strtol() 71 TEST(l, strtol(s="-2147483649", &c, 0), -2147483647L-1, "uncaught overflow %ld != %ld"); in test_strtol() 96 …TEST(l, strtol(s="9223372036854775808", &c, 0), 9223372036854775807L, "uncaught overflow %ld != %l… in test_strtol() 100 …TEST(l, strtol(s="-9223372036854775809", &c, 0), -9223372036854775807L-1, "uncaught overflow %ld !… in test_strtol() 125 TEST(l, strtol("z", 0, 36), 35, "%ld != %ld"); in test_strtol() 126 TEST(l, strtol("00010010001101000101011001111000", 0, 2), 0x12345678, "%ld != %ld"); in test_strtol() 127 TEST(l, strtol(s="0F5F", &c, 16), 0x0f5f, "%ld != %ld"); in test_strtol() [all …]
|
/picolibc-latest/newlib/libc/machine/necv70/ |
D | fastmath.S | 21 fsin.l [ap],[ap] 35 fcos.l [ap],[ap] 49 ftan.l [ap],[ap] 64 fabs.l [ap],[ap] 78 fsqrt.l [ap],[ap] 92 facos.l [ap],[ap] 106 fasin.l [ap],[ap] 120 fatan.l [ap],[ap] 134 fcosh.l [ap],[ap] 148 fsin.l [ap],[ap] [all …]
|
D | necv70.tex | 53 instruction @code{fsin.l} to perform the operation. Note that the 71 double fast_sin(double); /* fsin.l */ 72 double fast_cos(double); /* fcos.l */ 73 double fast_tan(double); /* ftan.l */ 74 double fast_asin(double); /* fasin.l */ 75 double fast_acos(double); /* facos.l */ 76 double fast_atan(double); /* fatan.l */ 77 double fast_sinh(double); /* fsinh.l */ 78 double fast_cosh(double); /* fcosh.l */ 79 double fast_tanh(double); /* ftanh.l */ [all …]
|
/picolibc-latest/newlib/libc/posix/ |
D | nftw.c | 51 size_t l = strlen(path), j = l && path[l-1]=='/' ? l-1 : l; in do_nftw() local 109 if (strlen(de->d_name) >= PATH_MAX-l) { in do_nftw() 127 path[l] = 0; in do_nftw() 137 size_t l; in nftw() local 142 l = strlen(path); in nftw() 143 if (l > PATH_MAX) { in nftw() 147 memcpy(pathbuf, path, l+1); in nftw()
|
/picolibc-latest/newlib/libc/machine/sh/ |
D | strcpy.S | 15 pta/l shortstring,tr1 23 pta/l no_lddst, tr2 29 pta/l loop, tr0 42 beqi/l r6, 0, tr0 // loop 53 beqi/l r6, 0, tr0 // loop 59 pta/l shortstring2,tr1 67 bnei/l r5,0,tr1 82 beqi/l r6, 0, tr0 // loop 107 mov.l @SRC+,r1 113 mov.l r1,@(r0,SRC) [all …]
|
D | setjmp.S | 99 sts.l pr,@-r4 108 mov.l r15,@-r4 ! call saved integer registers 109 mov.l r14,@-r4 110 mov.l r13,@-r4 111 mov.l r12,@-r4 113 mov.l r11,@-r4 114 mov.l r10,@-r4 115 mov.l r9,@-r4 116 mov.l r8,@-r4 184 mov.l @r4+,r8 [all …]
|
/picolibc-latest/newlib/libc/machine/xtensa/ |
D | memcpy.S | 111 bbci.l a5, 1, .Ldstaligned 142 bbsi.l a2, 0, .Ldst1mod2 143 bbsi.l a2, 1, .Ldst2mod4 199 2: bbci.l a4, 3, 3f 209 3: bbsi.l a4, 2, 4f 210 bbsi.l a4, 1, 5f 211 bbsi.l a4, 0, 6f 223 bbsi.l a4, 1, 5f 224 bbsi.l a4, 0, 6f 235 bbsi.l a4, 0, 6f [all …]
|