/picolibc-latest/newlib/libm/machine/spu/headers/ |
D | lgammad2.h | 154 vec_float4 xf; in _lgammad2() local 167 xf = spu_roundtf(xabs); in _lgammad2() 168 xf = spu_shuffle(xf, xf, dup_even); in _lgammad2() 200 isshifted = spu_cmpgt(shift_switch, xf); in _lgammad2() 256 xf = spu_shuffle(xf, xf, dup_even); in _lgammad2() 257 vec_uint4 useStirlings = spu_cmpgt(xf, zero_switch); in _lgammad2()
|
D | atanhd2.h | 105 vec_float4 xf; in _atanhd2() local 111 xf = spu_roundtf(xabs); in _atanhd2() 112 xf = spu_shuffle(xf, xf, dup_even); in _atanhd2() 139 use_form = spu_cmpgt(xf, switch_approx); in _atanhd2()
|
D | asinhd2.h | 106 vec_float4 xf; in _asinhd2() local 113 xf = spu_roundtf(xabs); in _asinhd2() 114 xf = spu_shuffle(xf, xf, dup_even); in _asinhd2() 144 use_form = spu_cmpgt(xf, switch_approx); in _asinhd2()
|
D | erfd2.h | 100 vec_float4 xf = spu_roundtf(xabs); in _erfd2() local 101 xf = spu_shuffle(xf, xf, dup_even); in _erfd2() 102 result = spu_sel(tresult, presult, (vec_ullong2)spu_cmpgt(xf, approx_point)); in _erfd2()
|
D | erfcd2.h | 111 vec_float4 xf = spu_roundtf(xabs); in _erfcd2() local 112 xf = spu_shuffle(xf, xf, dup_even); in _erfcd2() 113 result = spu_sel(tresult, presult, (vec_ullong2)spu_cmpgt(xf, approx_point)); in _erfcd2()
|
D | acoshd2.h | 109 vec_float4 xf = spu_roundtf(x); in _acoshd2() local 110 xf = spu_shuffle(xf, xf, dup_even); in _acoshd2() 112 vec_ullong2 use_form = (vec_ullong2)spu_cmpgt(xf, switch_approx); in _acoshd2()
|
D | fegetround.h | 43 return (((spu_extract(spu_mffpscr(), 0) >> 8) & 0xf) | FE_MASK_ROUND); in _fegetround()
|
/picolibc-latest/newlib/libc/machine/spu/ |
D | straddr.h | 48 ptr = (vec_uchar16 *)s; /* implicit (s & ~0xf) */ in _straddr() 49 skip = (unsigned int)(ptr) & 0xf; in _straddr() 51 * skip the first skip bytes starting at (s & ~0xf). in _straddr() 74 return ((char*) (((int) ptr & ~0xf) + (cnt - 16))); in _straddr()
|
D | strcspn.c | 61 initial_splat = spu_splats((unsigned char)((unsigned int)(s2) & 0xF)); in strcspn() 83 splat = spu_and((vec_uchar16)(spu_add((vec_uint4)splat, VEC_SPLAT_U32(0x01010101))), 0xF); in strcspn()
|
D | strspn.c | 61 initial_splat = spu_splats((unsigned char)((unsigned int)(s2) & 0xF)); in strspn() 82 splat = spu_and((vec_uchar16)(spu_add((vec_uint4)splat, VEC_SPLAT_U32(0x01010101))), 0xF); in strspn()
|
D | strpbrk.c | 59 initial_splat = spu_splats((unsigned char)((unsigned int)(s2) & 0xF)); in strpbrk() 80 splat = spu_and((vec_uchar16)(spu_add((vec_uint4)splat, VEC_SPLAT_U32(0x01010101))), 0xF); in strpbrk()
|
D | strlen.c | 69 return ((((int) ptr & ~0xf) + (cnt - 16)) - (int) s); in strlen()
|
/picolibc-latest/newlib/libc/tinystdio/ |
D | setvbuf.c | 41 struct __file_ext *xf = (struct __file_ext *) stream; in setvbuf() local 42 if ((stream->flags & __SEXT) && xf->setvbuf) in setvbuf() 43 return (xf->setvbuf)(stream, buf, mode, size); in setvbuf()
|
D | fseek.c | 45 struct __file_ext *xf = (struct __file_ext *) stream; in FSEEK() local 46 if ((stream->flags & __SEXT) && xf->seek) { in FSEEK() 47 if ((xf->seek) (stream, (__off_t) offset, whence) >= 0) { in FSEEK()
|
D | ftell.c | 46 struct __file_ext *xf = (struct __file_ext *) stream; in FTELL() local 47 if ((stream->flags & __SEXT) && xf->seek) { in FTELL() 48 FTELL_TYPE ret = (FTELL_TYPE) (xf->seek) (stream, 0, SEEK_CUR); in FTELL()
|
D | dtox_engine.c | 153 int dig = s & 0xf; in __dtox_engine()
|
/picolibc-latest/.github/ |
D | Dockerfile-zephyr | 24 tar xf `basename "$file"`; \ 39 RUN tar xf ccache-4.8.2-linux-x86_64.tar.xz -C /usr/bin --strip-components=1 --no-same-owner ccache…
|
D | Dockerfile | 19 …(cd /opt && while read file; do wget $file || exit 1; tar xf `basename $file`; rm `basename $file`…
|
/picolibc-latest/newlib/libm/test/ |
D | math2.c | 79 float xf; in test_frexp() local 115 xf = x; in test_frexp() 116 r = (double) frexpf(xf, &pow); in test_frexp()
|
/picolibc-latest/picocrt/machine/arm/ |
D | crt0.c | 64 *CPACR |= 0xf << 20; in _start() 234 __asm__("mcr p15, 0, %0, c1, c0, 2" : : "r" (0xf << 20)); in _cstart() 254 if ((mmfr0 & 0xf) >= 3) in _cstart() 329 unsigned digitval = 0xF & (reg >> (28 - 4*i)); in arm_fault_write_reg()
|
/picolibc-latest/.github/workflows/ |
D | linux.yml | 96 …sudo tar xf ccache-4.8.2-linux-x86_64.tar.xz -C /usr/bin --strip-components=1 --no-same-owner ccac… 156 …sudo tar xf ccache-4.8.2-linux-x86_64.tar.xz -C /usr/bin --strip-components=1 --no-same-owner ccac… 216 …sudo tar xf ccache-4.8.2-linux-x86_64.tar.xz -C /usr/bin --strip-components=1 --no-same-owner ccac…
|
D | steps-head | 26 …sudo tar xf ccache-4.8.2-linux-x86_64.tar.xz -C /usr/bin --strip-components=1 --no-same-owner ccac…
|
D | zephyr.yml | 102 …sudo tar xf ccache-4.8.2-linux-x86_64.tar.xz -C /usr/bin --strip-components=1 --no-same-owner ccac… 162 …sudo tar xf ccache-4.8.2-linux-x86_64.tar.xz -C /usr/bin --strip-components=1 --no-same-owner ccac…
|
/picolibc-latest/newlib/libc/picolib/machine/sparc/ |
D | interrupt.S | 43 #define PSR_VER (0xf << PSR_VER_BIT) 48 #define PSR_PIL (0xf << PSR_PIL_BIT)
|
/picolibc-latest/semihost/machine/sh/ |
D | sh_semihost.h | 63 uint8_t unused_01[0xf];
|