/picolibc-latest/newlib/libc/machine/spu/ |
D | spu-gmon.c | 341 __ea struct tostruct *top; in __mcount_internal() local 371 top = &tos[toindex]; in __mcount_internal() 373 top->selfpc = selfpc; in __mcount_internal() 374 top->count = 1; in __mcount_internal() 375 top->link = 0; in __mcount_internal() 380 top = &tos[toindex]; in __mcount_internal() 381 if (top->selfpc == selfpc) in __mcount_internal() 384 top->count++; in __mcount_internal() 394 if (top->link == 0) in __mcount_internal() 405 top = &tos[toindex]; in __mcount_internal() [all …]
|
/picolibc-latest/newlib/libc/stdlib/ |
D | ecvtbuf.c | 83 int top; in print_e() local 147 int top = decpt / 100; in print_e() local 148 *buf++ = top + '0'; in print_e() 149 decpt -= top * 100; in print_e() 151 top = decpt / 10; in print_e() 152 *buf++ = top + '0'; in print_e() 153 decpt -= top * 10; in print_e()
|
D | mallocr.c | 1178 #define top (bin_at(0)->fd) /* The topmost chunk */ macro 1383 if (p != top) in do_check_chunk() 1384 assert((char*)p + sz <= (char*)top); in do_check_chunk() 1410 assert (next == top || inuse(next)); in do_check_free_chunk() 1438 if (next == top) in do_check_inuse_chunk() 1712 mchunkptr old_top = top; /* Record state of old top */ in malloc_extend_top() 1742 set_head(top, top_size | PREV_INUSE); in malloc_extend_top() 1780 top = (mchunkptr)brk; in malloc_extend_top() 1782 set_head(top, top_size | PREV_INUSE); in malloc_extend_top() 1793 set_head(top, PREV_INUSE); /* will force null return from malloc */ in malloc_extend_top() [all …]
|
/picolibc-latest/newlib/libm/common/ |
D | sf_log2.c | 54 uint32_t ix, iz, top, tmp; in log2f() local 82 top = tmp & 0xff800000; in log2f() 83 iz = ix - top; in log2f()
|
D | log2.c | 58 uint32_t top; variable 62 top = top16 (x); 98 if (unlikely (top - 0x0010 >= 0x7ff0 - 0x0010)) 105 if ((top & 0x8000) || (top & 0x7ff0) == 0x7ff0)
|
D | log.c | 58 uint32_t top; in log() local 62 top = top16 (x); in log() 122 if (unlikely (top - 0x0010 >= 0x7ff0 - 0x0010)) in log() 129 if ((top & 0x8000) || (top & 0x7ff0) == 0x7ff0) in log()
|
D | sf_pow.c | 58 uint32_t iz, top, tmp; in log2_inline() local 66 top = tmp & 0xff800000; in log2_inline() 67 iz = ix - top; in log2_inline() 68 k = (int32_t) top >> (23 - POWF_SCALE_BITS); /* arithmetic shift */ in log2_inline()
|
D | exp2.c | 102 uint64_t ki, idx, top, sbits; in exp2() local 137 top = ki << (52 - EXP_TABLE_BITS); in exp2() 140 sbits = T[idx + 1] + top; in exp2()
|
D | exp.c | 104 uint64_t ki, idx, top, sbits; in exp() local 150 top = ki << (52 - EXP_TABLE_BITS); in exp() 153 sbits = T[idx + 1] + top; in exp()
|
D | pow.c | 203 uint64_t ki, idx, top, sbits; in exp_inline() local 251 top = (ki + sign_bias) << (52 - EXP_TABLE_BITS); in exp_inline() 254 sbits = T[idx + 1] + top; in exp_inline()
|
/picolibc-latest/newlib/libc/machine/arc64/ |
D | memcpy.S | 96 ;; We are still having 15 bytes top to transfer, exactly like in the
|
D | strlen.S | 291 ; represent shift by 3 and the top 0111 represents the mask (3 to 5
|
D | memchr.S | 361 ; a single xbful operation. The bottom 000011 represent shift by 3 and the top
|
D | strcat.S | 579 ; a single xbful operation. The bottom 000011 represent shift by 3 and the top
|
/picolibc-latest/newlib/libc/posix/ |
D | regcomp.c | 1214 cset *top = &p->g->sets[p->g->ncsets]; in freeset() local 1219 if (cs == top-1) /* recover only the easy case */ in freeset() 1238 cset *top = &p->g->sets[p->g->ncsets]; in freezeset() local 1243 for (cs2 = &p->g->sets[0]; cs2 < top; cs2++) in freezeset() 1253 if (cs2 < top) { /* found one */ in freezeset()
|
/picolibc-latest/newlib/ |
D | HOWTO | 157 with the historical top-level acinclude.m4 file! 187 top of the Makefile.am by assigning it (e.g., CLEANFILES =), and then always 195 to be run from the top-level, and the full path to the target is specified.
|
D | NEWS | 242 * switch to use top-level libtool 355 * Cross compiler target libraries are now built in a subdir of the top level
|
D | README | 174 build, host, and target options given to the top-level configure script must 184 In summary: the --target=TARGET switch to the top-level configure 507 Now type make check-target-newlib in the top-level build directory to
|
D | ChangeLog-2015 | 6359 * libc/include/_ansi.h: Move C++ defines to top of file. 9942 declaration to top of function in keeping with C89 standard. 12834 first to mimic the behavior of the top-level configury. Move include 14011 copyright notices to top of file, ensure that <_ansi.h> is 14224 top level newlib configure.in. 17926 use new libtool macros in top-level libtool.m4 18214 move tmp declaration to the top. 18459 are already specified in the top-level configure.in's FLAGS_FOR_TARGET. 22559 * libc/sys/arm/crt0.S: Set top of RAM to be 0x800000 for PE 24557 * libc/sys/arm/crt0.S: Move stack to top of RAM on PIE board. [all …]
|
/picolibc-latest/doc/ |
D | linking.md | 78 * `__stack_size` reserves this much space at the top of ram for the
|
/picolibc-latest/ |
D | README.md | 853 2. Support building libstdc++ on top of picolibc
|