/picolibc-latest/newlib/libc/include/ |
D | meson.build | 42 'alloca.h', 43 'argz.h', 44 'ar.h', 45 'assert.h', 46 'byteswap.h', 47 'cpio.h', 48 'ctype.h', 49 'devctl.h', 50 'dirent.h', 51 'elf.h', [all …]
|
D | CMakeLists.txt | 42 alloca.h 43 argz.h 44 ar.h 45 assert.h 46 byteswap.h 47 cpio.h 48 ctype.h 49 devctl.h 50 dirent.h 51 elf.h [all …]
|
/picolibc-latest/newlib/libc/search/ |
D | hash_func.c | 69 __uint32_t h; 72 for (key = keyarg, h = 0; len--;) 73 h = h * PRIME1 ^ (*key++ - ' '); 74 h %= PRIME2; 75 return (h); 82 #define dcharhash(h, c) ((h) = 0x63c63cd9*(h) + 0x9c39c33d + (c)) argument 91 __uint32_t h; 96 for (h = 0; key != e;) { 100 dcharhash(h, c); 102 return (h); [all …]
|
/picolibc-latest/newlib/libc/include/sys/ |
D | CMakeLists.txt | 36 auxv.h 37 cdefs.h 38 config.h 39 custom_file.h 40 _default_fcntl.h 41 dirent.h 42 dir.h 43 errno.h 44 fcntl.h 45 features.h [all …]
|
D | meson.build | 36 'auxv.h', 37 'cdefs.h', 38 'config.h', 39 'custom_file.h', 40 '_default_fcntl.h', 41 'dirent.h', 42 'dir.h', 43 'errno.h', 44 'fcntl.h', 45 'features.h', [all …]
|
/picolibc-latest/newlib/libc/sys/rtems/include/ |
D | README | 30 include/arpa/inet.h include/netdb.h include/termios.h sys/net/if.h \ 31 sys/netinet6/in6.h sys/netinet/in.h sys/netinet/tcp.h sys/sys/filio.h \ 32 sys/sys/ioccom.h sys/sys/_iovec.h sys/sys/mman.h sys/sys/poll.h \ 33 sys/sys/_sockaddr_storage.h sys/sys/socket.h sys/sys/sockio.h \ 34 sys/sys/syslog.h sys/sys/_termios.h sys/sys/ttycom.h sys/sys/ttydefaults.h \ 35 sys/sys/_uio.h sys/sys/uio.h sys/sys/un.h 39 sed -i 's,include/arpa/inet.h,newlib/libc/sys/rtems/include/arpa/inet.h,g' *.patch 40 sed -i 's,include/netdb.h,newlib/libc/sys/rtems/include/netdb.h,g' *.patch 41 sed -i 's,include/termios.h,newlib/libc/sys/rtems/include/termios.h,g' *.patch 42 sed -i 's,sys/net/if.h,newlib/libc/sys/rtems/include/net/if.h,g' *.patch [all …]
|
/picolibc-latest/newlib/libc/stdlib/ |
D | quick_exit.c | 52 struct quick_exit_handler *h; in at_quick_exit() local 54 h = malloc(sizeof(*h)); in at_quick_exit() 56 if (NULL == h) in at_quick_exit() 58 h->cleanup = func; in at_quick_exit() 60 h->next = handlers; in at_quick_exit() 61 handlers = h; in at_quick_exit() 69 struct quick_exit_handler *h; in quick_exit() local 75 for (h = handlers; NULL != h; h = h->next) in quick_exit() 76 h->cleanup(); in quick_exit()
|
D | set_constraint_handler_s.c | 52 constraint_handler_t h = __cur_handler; in set_constraint_handler_s() local 60 return h; in set_constraint_handler_s()
|
D | meson.build | 224 'arc4random.h', 225 'atexit.h', 226 'chacha_private.h', 227 'gd_qnan.h', 228 'gdtoa.h', 229 'local.h', 230 'mbctype.h', 231 'mprec.h', 232 'rand48.h', 233 'std.h',
|
D | gdtoa-hexnan.c | 84 __ULong c, h, *x, *x1, *xe; in hexnan() local 97 if (!(h = __get_hexdig(c))) { in hexnan() 126 *x = ((*x << 4) | (h & 0xf)); in hexnan()
|
/picolibc-latest/newlib/libc/include/machine/ |
D | CMakeLists.txt | 36 ansi.h 37 _arc4random.h 38 _default_types.h 39 _endian.h 40 endian.h 41 fastmath.h 42 fenv.h 43 fenv-softfloat.h 44 ieeefp.h 45 malloc.h [all …]
|
D | meson.build | 36 'ansi.h', 37 '_arc4random.h', 38 '_default_types.h', 39 '_endian.h', 40 'endian.h', 41 'fastmath.h', 42 'fenv.h', 43 'fenv-softfloat.h', 44 'ieeefp.h', 45 'malloc.h', [all …]
|
/picolibc-latest/newlib/libm/math/ |
D | sf_sinh.c | 23 float t, w, h; in sinhf() local 33 h = 0.5; in sinhf() 35 h = -h; in sinhf() 43 return h * ((float)2.0 * t - t * t / (t + one)); in sinhf() 44 return h * (t + t / (t + one)); in sinhf() 49 return h * expf(fabsf(x)); in sinhf() 54 t = h * w; in sinhf()
|
D | s_sinh.c | 41 __float64 t, w, h; in sinh64() local 53 h = _F_64(0.5); in sinh64() 55 h = -h; in sinh64() 63 return h * (_F_64(2.0) * t - t * t / (t + one)); in sinh64() 64 return h * (t + t / (t + one)); in sinh64() 69 return h * exp64(fabs64(x)); in sinh64() 75 t = h * w; in sinh64()
|
/picolibc-latest/newlib/libm/ld/ld80/ |
D | e_sinhl.c | 38 long double t,w,h; in sinhl() local 48 h = 0.5l; in sinhl() 49 if (jx & 0x8000) h = -h; in sinhl() 55 if(ix<0x3fff) return h*(2.0l*t-t*t/(t+one)); in sinhl() 56 return h*(t+t/(t+one)); in sinhl() 61 return h*expl(fabsl(x)); in sinhl() 68 t = h*w; in sinhl()
|
/picolibc-latest/newlib/libm/ld/ld128/ |
D | e_sinhl.c | 55 long double t, w, h; in sinhl() local 69 h = 0.5L; in sinhl() 71 h = -h; in sinhl() 84 return h * (2.0L * t - t * t / (t + one)); in sinhl() 85 return h * (t + t / (t + one)); in sinhl() 90 return h * expl (u.value); in sinhl() 97 t = h * w; in sinhl()
|
/picolibc-latest/newlib/libc/posix/ |
D | nftw.c | 49 …(const char *, const struct stat *, int, struct FTW *), int fd_limit, int flags, struct history *h) in do_nftw() argument 74 if ((flags & FTW_MOUNT) && h && st.st_dev != h->dev) in do_nftw() 77 new.chain = h; in do_nftw() 80 new.level = h ? h->level+1 : 0; in do_nftw() 84 if (h) { in do_nftw() 85 lev.base = h->base; in do_nftw() 96 for (; h; h = h->chain) in do_nftw() 97 if (h->dev == st.st_dev && h->ino == st.st_ino) in do_nftw()
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 8 * libc/stdlib/on_exit_args.{c,h}: New files. 19 * libc/machine/arc/asm.h: Define new GCC definition for old compiler. 46 * libc/include/sys/types.h: Remove including <sys/select.h>. 50 * libc/include/sys/reent.h (_REENT_INIT_PTR_ZEROED): New. 55 * libc/include/sys/_sigset.h: New. 56 * libc/include/sys/select.h: Do not include <sys/types.h> and 57 <sys/time.h> to avoid cyclic header file dependencies. Include 60 * libc/include/sys/signal.h (sigset_t): Likewise. 61 * libc/include/sys/time.h: Include <sys/select.h> if 63 * libc/include/sys/types.h: Likewise. [all …]
|
/picolibc-latest/newlib/libc/include/ssp/ |
D | CMakeLists.txt | 36 ssp.h 37 stdio.h 38 stdlib.h 39 string.h 40 strings.h 41 unistd.h 42 wchar.h
|
D | meson.build | 37 'ssp.h', 38 'stdio.h', 39 'stdlib.h', 40 'string.h', 41 'strings.h', 42 'unistd.h', 43 'wchar.h',
|
/picolibc-latest/newlib/libc/machine/arm/machine/ |
D | CMakeLists.txt | 36 acle-compat.h 37 _endian.h 38 fenv.h 39 fenv-fp.h 40 math.h 41 param.h
|
D | meson.build | 36 'acle-compat.h', 37 '_endian.h', 38 'fenv.h', 39 'fenv-fp.h', 40 'math.h', 41 'param.h',
|
/picolibc-latest/ |
D | COPYING.picolibc | 24 Files: newlib/libc/iconv/ccs/ccs.h 28 newlib/libc/iconv/lib/endian.h 30 newlib/libc/iconv/lib/iconvnls.h 31 newlib/libc/iconv/lib/local.h 48 newlib/libc/iconv/lib/conv.h 52 newlib/libc/iconv/lib/ucsconv.h 57 Files: newlib/libc/include/devctl.h 61 Files: newlib/libc/include/iconv.h 65 Files: newlib/libc/include/langinfo.h 66 newlib/libc/include/wchar.h [all …]
|
/picolibc-latest/newlib/libc/iconv/lib/ |
D | meson.build | 44 'conv.h', 45 'encnames.h', 46 'endian.h', 47 'iconvnls.h', 48 'local.h', 49 'ucsconv.h',
|
/picolibc-latest/newlib/libc/machine/aarch64/machine/ |
D | CMakeLists.txt | 36 _types.h 37 fenv.h 38 fenv-fp.h 39 math.h
|