/picolibc-3.5.0-3.4.0/newlib/libc/machine/arm/ |
D | arm_asm.h | 155 .macro cfirestorelist first, last 156 .cfi_restore \last 157 .if \last-\first 158 cfirestorelist \first, \last-1 163 .macro cfisavelist first, last, index=1 164 .cfi_offset \last, -4*(\index) 165 .if \last-\first 166 cfisavelist \first, \last-1, \index+1 170 .macro _prologue first=-1, last=-1, push_ip=PAC_LEAF_PUSH_IP, push_lr=0 178 .if \last == -1 [all …]
|
/picolibc-3.5.0-3.4.0/newlib/libc/machine/spu/ |
D | spu-mcount.S | 51 .macro saveregs first, last 53 .if \last-\first 54 saveregs "(\first+1)",\last 58 .macro restoreregs first, last 59 lqd $\last, \last*16($SP) 60 .if \last-\first
|
D | spu_timer_flih.S | 42 .macro saveregs first, last 44 .if \last-\first 45 saveregs "(\first+1)",\last 50 .macro restoreregs first, last 51 lqd $\last, (82-\last)*16($SP) 52 .if \last-\first
|
/picolibc-3.5.0-3.4.0/newlib/libc/string/ |
D | strrchr.c | 52 const char *last = NULL; in strrchr() local 59 last = s; in strrchr() 65 last = strchr(s, c); in strrchr() 68 return (char *) last; in strrchr()
|
D | uniset | 298 $last = hex($3); 299 for ($i = $first; $i <= $last; $i++) { 376 $last = hex($5); 377 for ($i = $first; $i <= $last; $i++) { 391 $last = $first; 394 $last = hex("$row$2"); 398 for ($i = $first; $i <= $last; $i++) { 624 $last = -1; 630 if ($last <= $blockend[$block-1] && 637 if ($last < $blockstart[$block] && $i >= $blockstart[$block]) { [all …]
|
D | wcwidth.c | 104 uint32_t last; member 114 if (ucs < table[0].first || ucs > table[max].last) in bisearch() 119 if (ucs > table[mid].last) in bisearch()
|
/picolibc-3.5.0-3.4.0/newlib/libc/iconv/ces/ |
D | table.c | 363 int first, last, cur, center; in find_code_size() local 368 last = tblp[RANGES_NUM_INDEX] - 1; in find_code_size() 372 center = (last - first)/2; in find_code_size() 378 last = cur; in find_code_size() 383 if (last - first == 1) in find_code_size() 388 if (code >= RANGE_LEFT (last) && code <= RANGE_RIGHT (last)) in find_code_size() 389 return (ucs2_t)tblp[RANGE_INDEX (last) in find_code_size() 390 + code - RANGE_LEFT (last)]; in find_code_size() 397 last = tblp[UNRANGED_NUM_INDEX] - 1; in find_code_size() 403 center = (last - first)/2; in find_code_size() [all …]
|
/picolibc-3.5.0-3.4.0/newlib/libc/ctype/ |
D | mkcategories | 30 -a $(( 0x$1 )) -ne $(( 0x${last-0} + 1 )) ] 40 last=$1 46 echo " {CAT_$val, 0x$first, $((0x$last - 0x$first))},"
|
D | towctrans_l.c | 55 #define last(ce) ((wint_t) (ce.first + ce.diff)) macro 64 if (ucs < first(table[0]) || ucs > last(table[max])) in bisearch() 69 if (ucs > last(table[mid])) in bisearch()
|
D | mkcaseconv | 102 then if [ $(( $1 )) -ne $(( ${last-0} + 1 )) ] 113 last=$1
|
/picolibc-3.5.0-3.4.0/newlib/libc/argz/ |
D | argz_append.c | 21 size_t last = *argz_len; in argz_append() local 28 memcpy(*argz + last, buf, buf_len); in argz_append()
|
D | argz_add.c | 19 size_t last = *argz_len; in argz_add() local 30 memcpy(*argz + last, str, len_to_add); in argz_add()
|
D | argz_add_sep.c | 21 size_t last = *argz_len; in argz_add_sep() local 32 memcpy(*argz + last, str_argz, str_argz_len); in argz_add_sep()
|
/picolibc-3.5.0-3.4.0/newlib/testsuite/newlib.locale/ |
D | UTF-8.c | 28 char last[6][6] = { variable 170 retval = mbtowc (&wchar, last[i-1], MAX_BYTES); in main()
|
/picolibc-3.5.0-3.4.0/newlib/libc/machine/rx/ |
D | strncpy.S | 35 add r4, r5, r1 ; Point to the last byte that we are supposed to write.
|
D | memmove.S | 52 add r3, r2 ; SRC in r2 but it needs them to point the last bytes of
|
/picolibc-3.5.0-3.4.0/newlib/libc/machine/i960/ |
D | memcmp.S | 93 addo g0,g2,g2 # calculate byte addr of byte after last in src1
|
D | memcpy_ca.S | 118 addo g2,g1,g5 # compute addr of byte after last byte of src 240 ld (g3),MSW # fetch last word of src 327 ld (MSW),MSW # pre-fetch word with at least last byte 329 ld (g3),LSW # pre-fetch second to last word 336 cmpo g1,g5 # < indicates last word of dest has less bytes
|
D | strncpy_ca.S | 178 andnot g5,g1,g1 # last bytes to copy, and null pad rest of word 180 subo 1,LSW,g5 # mask to get last bytes to copy, and null pad 181 and g5,g1,g1 # last bytes to copy, and null pad rest of word
|
D | strncpy.S | 144 st g4, (g5) # store last part of src and first of null-pad
|
D | strncat.S | 105 and g7, g3, g14 # extract byte of last word of dest string
|
/picolibc-3.5.0-3.4.0/newlib/libc/machine/crx/ |
D | setjmp.S | 19 # from the last call to #
|
/picolibc-3.5.0-3.4.0/newlib/libc/machine/xtensa/ |
D | xtensa.tex | 54 @code{longjmp} restores the environment saved by the last call of
|
/picolibc-3.5.0-3.4.0/newlib/libc/machine/cr16/ |
D | setjmp.S | 19 # from the last call to #
|
/picolibc-3.5.0-3.4.0/newlib/libc/stdlib/ |
D | mallocr.c | 1591 #define last(b) ((b)->bk) macro 2340 victim = last(q); 2347 victim = last(q); 2368 for (victim = last(bin); victim != bin; victim = victim->bk) 2460 for (victim = last(bin); victim != bin; victim = victim->bk) 3421 for (p = last(b); p != b; p = p->bk) in malloc_update_mallinfo()
|