Home
last modified time | relevance | path

Searched refs:top (Results 1 – 21 of 21) sorted by relevance

/picolibc-latest/newlib/libc/machine/spu/
Dspu-gmon.c341 __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/
Decvtbuf.c83 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()
Dmallocr.c1178 #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/
Dsf_log2.c54 uint32_t ix, iz, top, tmp; in log2f() local
82 top = tmp & 0xff800000; in log2f()
83 iz = ix - top; in log2f()
Dlog2.c58 uint32_t top; variable
62 top = top16 (x);
98 if (unlikely (top - 0x0010 >= 0x7ff0 - 0x0010))
105 if ((top & 0x8000) || (top & 0x7ff0) == 0x7ff0)
Dlog.c58 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()
Dsf_pow.c58 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()
Dexp2.c102 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()
Dexp.c104 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()
Dpow.c203 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/
Dmemcpy.S96 ;; We are still having 15 bytes top to transfer, exactly like in the
Dstrlen.S291 ; represent shift by 3 and the top 0111 represents the mask (3 to 5
Dmemchr.S361 ; a single xbful operation. The bottom 000011 represent shift by 3 and the top
Dstrcat.S579 ; a single xbful operation. The bottom 000011 represent shift by 3 and the top
/picolibc-latest/newlib/libc/posix/
Dregcomp.c1214 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/
DHOWTO157 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.
DNEWS242 * switch to use top-level libtool
355 * Cross compiler target libraries are now built in a subdir of the top level
DREADME174 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
DChangeLog-20156359 * 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/
Dlinking.md78 * `__stack_size` reserves this much space at the top of ram for the
/picolibc-latest/
DREADME.md853 2. Support building libstdc++ on top of picolibc