/picolibc-latest/newlib/libm/ld/ld128/ |
D | e_hypotl.c | 50 long double a,b,t1,t2,yy1,y2,w; in hypotl() local 85 t1=0; in hypotl() 86 SET_LDOUBLE_MSW64(t1,0x7ffd000000000000LL); /* t1=2^16382 */ in hypotl() 87 b *= t1; in hypotl() 88 a *= t1; in hypotl() 101 t1 = 0; in hypotl() 102 SET_LDOUBLE_MSW64(t1,ha); in hypotl() 103 t2 = a-t1; in hypotl() 104 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl() 110 t1 = 0; in hypotl() [all …]
|
D | e_powl.c | 146 long double yy1, t1, t2, r, s, t, u, v, w; in powl() local 365 t1 = (((z_h + z_l) + dp_h[k]) + t); in powl() 366 o.value = t1; in powl() 369 t1 = o.value; in powl() 370 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h); in powl() 383 p_l = (y - yy1) * t1 + y * t2; in powl() 384 p_h = yy1 * t1; in powl() 436 t1 = z - t * u / v; in powl() 437 r = (z * t1) / (t1 - two) - (w + z * w); in powl()
|
/picolibc-latest/newlib/libm/math/ |
D | s_hypot.c | 53 __float64 a = x, b = y, t1, t2, y1, y2, w; in hypot64() local 101 t1 = 0; in hypot64() 102 SET_HIGH_WORD(t1, 0x7fd00000); /* t1=2^1022 */ in hypot64() 103 b *= t1; in hypot64() 104 a *= t1; in hypot64() 117 t1 = 0; in hypot64() 118 SET_HIGH_WORD(t1, ha); in hypot64() 119 t2 = a - t1; in hypot64() 120 w = sqrt64(t1 * t1 - (b * (-b) - t2 * (a + t1))); in hypot64() 126 t1 = 0; in hypot64() [all …]
|
D | sf_hypot.c | 21 float a = x, b = y, t1, t2, y1, y2, w; in hypotf() local 59 SET_FLOAT_WORD(t1, 0x7e800000L); /* t1=2^126 */ in hypotf() 60 b *= t1; in hypotf() 61 a *= t1; in hypotf() 74 SET_FLOAT_WORD(t1, ha & 0xfffff000L); in hypotf() 75 t2 = a - t1; in hypotf() 76 w = sqrtf(t1 * t1 - (b * (-b) - t2 * (a + t1))); in hypotf() 81 SET_FLOAT_WORD(t1, (ha + 0x00800000L) & 0xfffff000UL); in hypotf() 82 t2 = a - t1; in hypotf() 83 w = sqrtf(t1 * y1 - (w * (-w) - (t1 * y2 + t2 * b))); in hypotf() [all …]
|
D | s_sqrt.c | 93 __uint32_t r, t1, s1, ix1, q1; in sqrt64() local 154 t1 = s1 + r; in sqrt64() 156 if ((t < ix0) || ((t == ix0) && (t1 <= ix1))) { in sqrt64() 157 s1 = t1 + r; in sqrt64() 158 if (((t1 & sign) == sign) && (s1 & sign) == 0) in sqrt64() 161 if (ix1 < t1) in sqrt64() 163 ix1 -= t1; in sqrt64()
|
D | sf_pow.c | 60 float y1, t1, t2, r, s, t, u, v, w; in powf() local 166 t1 = u + v; in powf() 167 GET_FLOAT_WORD(is, t1); in powf() 168 SET_FLOAT_WORD(t1, is & 0xfffff000); in powf() 169 t2 = v - (t1 - u); in powf() 228 t1 = (((z_h + z_l) + dp_h[k]) + t); in powf() 229 GET_FLOAT_WORD(is, t1); in powf() 230 SET_FLOAT_WORD(t1, is & 0xfffff000); in powf() 231 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h); in powf() 241 p_l = (y - y1) * t1 + y * t2; in powf() [all …]
|
D | s_pow.c | 101 __float64 y1, t1, t2, r, s, t, u, v, w; in pow64() local 232 t1 = u + v; in pow64() 233 SET_LOW_WORD(t1, 0); in pow64() 234 t2 = v - (t1 - u); in pow64() 290 t1 = (((z_h + z_l) + dp_h[k]) + t); in pow64() 291 SET_LOW_WORD(t1, 0); in pow64() 292 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h); in pow64() 302 p_l = (y - y1) * t1 + y * t2; in pow64() 303 p_h = y1 * t1; in pow64() 344 t1 = z - t * (P1 + t * (P2 + t * (P3 + t * (P4 + t * P5)))); in pow64() [all …]
|
D | sf_log.c | 35 float hfsq, f, s, z, R, w, t1, t2, dk; in logf() local 81 t1 = w * (Lg2 + w * (Lg4 + w * Lg6)); in logf() 84 R = t2 + t1; in logf()
|
D | s_log.c | 86 __float64 hfsq, f, s, z, R, w, t1, t2, dk; in log64() local 133 t1 = w * (Lg2 + w * (Lg4 + w * Lg6)); in log64() 136 R = t2 + t1; in log64()
|
D | srf_lgamma.c | 42 t1 = -1.4758771658e-01, /* 0xbe17213c */ variable 235 p2 = t1 + w * (t4 + w * (t7 + w * (t10 + w * t13))); in __math_lgammaf_r()
|
/picolibc-latest/newlib/libm/ld/ld80/ |
D | e_hypotl.c | 50 long double a,b,t1,t2,yy1,y2,w; in hypotl() local 86 SET_LDOUBLE_WORDS(t1, 0x7ffd, 0, 0); /* t1=2^16382 */ in hypotl() 87 b *= t1; in hypotl() 88 a *= t1; in hypotl() 103 SET_LDOUBLE_WORDS(t1,ea,high,0); in hypotl() 104 t2 = a-t1; in hypotl() 105 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl() 113 SET_LDOUBLE_WORDS(t1,ea+1,high,0); in hypotl() 114 t2 = a - t1; in hypotl() 115 w = sqrtl(t1*yy1-(w*(-w)-(t1*y2+t2*b))); in hypotl() [all …]
|
/picolibc-latest/test/ |
D | meson.build | 142 t1 = 'printf_scanf' variable 144 t1_name = t1 146 t1_name = t1 + '_' + target 159 t1 = 'printff_scanff' variable 161 t1_name = t1 163 t1_name = t1 + '_' + target 176 t1 = 'printfl_scanfl' variable 178 t1_name = t1 180 t1_name = t1 + '_' + target 193 t1 = 'printfi_scanfi' variable [all …]
|
D | time-tests.c | 93 time_t t1 = timegm( &dtForTimegm1 ); in main() local 95 if ( t1 != 2851200 || in main() 106 if ( t2 != t1 + 3 * 60 * 60 || // The chosen time zone has a positive 3-hour difference. in main()
|
D | t_fmemopen.c | 1161 struct testcase *t0, *t1; in ATF_TC_BODY() local 1169 for (t1 = &testcases[0]; t1->s != NULL; ++t1) { in ATF_TC_BODY() 1171 len1 = strnlen(t1->s, t1->n); in ATF_TC_BODY() 1181 written = fwrite(t1->s, 1, t1->n, fp); in ATF_TC_BODY() 1196 if (t1->s[t1->n - 1] != '\0' && nleft <= 1) in ATF_TC_BODY()
|
/picolibc-latest/newlib/libc/machine/mips/ |
D | strcmp.S | 108 nor t1, v0, t9; \ 109 and t0, t0, t1; \ 139 nor t1, v0, t9 140 and t1, t0, t1 142 or t0, t0, t1 147 clz t1, t0 148 and t1, 0xf8 150 neg t1 151 addu t1, 24 153 rotrv v0, v0, t1 [all …]
|
D | memcpy.S | 217 #define REG1 t1 296 xor t1,t0,t2 297 PTR_SUBU t0,t1,t2 463 C_LD t1,UNIT(1)(a1) 489 C_ST t1,UNIT(1)(a0) 498 C_LD t1,UNIT(9)(a1) 509 C_ST t1,UNIT(9)(a0) 534 C_LD t1,UNIT(1)(a1) 543 C_ST t1,UNIT(1)(a0) 689 C_LDHI t1,UNIT(1)(a1) [all …]
|
/picolibc-latest/newlib/libc/machine/riscv/ |
D | memmove.S | 21 mv t1, a0 27 add t1, t1, a4 32 sb t2, 0(t1) 34 add t1, t1, a3
|
D | memcpy-asm.S | 19 mv t1, a0 24 sb t2, 0(t1) 26 add t1, t1, 1
|
D | memset.S | 19 mv t1, a0 23 sb a1, 0(t1) 25 add t1, t1, 1 32 li t1, 15 34 bleu a2, t1, .Ltiny 62 sub a3, t1, a2 112 bleu a2, t1, .Ltiny
|
D | strcmp.S | 55 or t1, a2, a5 57 or t0, t0, t1
|
/picolibc-latest/test/libc-testsuite/ |
D | meson.build | 75 foreach t1 : libc_tests_picolibc 76 t1_src = t1 + '.c' 78 t1_name = t1 80 t1_name = t1 + '_' + target 84 if t1 == 'snprintf' variable 112 foreach t1 : libc_tests_native 113 t1_src = t1 + '.c' 114 t1_name = t1 + '-native'
|
/picolibc-latest/newlib/libm/common/ |
D | log2.c | 56 double_t z, r, r2, r4, y, invc, logc, kd, hi, lo, t1, t2, t3, p; variable 129 t1 = r * InvLn2hi; 130 t2 = r * InvLn2lo + fma (r, InvLn2hi, -t1); 137 t1 = rhi * InvLn2hi; 143 hi = t3 + t1; 144 lo = t3 - hi + t1 + t2;
|
D | pow.c | 63 double_t z, r, y, invc, logc, logctail, kd, hi, t1, t2, lo, lo1, lo2, p; in log_inline() local 96 t1 = kd * Ln2hi + logc; in log_inline() 97 t2 = t1 + r; in log_inline() 99 lo2 = t1 - t2 + r; in log_inline()
|
/picolibc-latest/newlib/libc/xdr/ |
D | xdr.c | 865 int32_t t1, t2; in xdr_int64_t() local 870 t1 = (int32_t) ((*llp) >> 32); in xdr_int64_t() 872 return (XDR_PUTINT32 (xdrs, &t1) && XDR_PUTINT32 (xdrs, &t2)); in xdr_int64_t() 875 if (!XDR_GETINT32 (xdrs, &t1) || !XDR_GETINT32 (xdrs, &t2)) in xdr_int64_t() 877 *llp = ((int64_t) t1) << 32; in xdr_int64_t() 895 uint32_t t1, t2; in xdr_u_int64_t() local 900 t1 = (uint32_t) ((*ullp) >> 32); in xdr_u_int64_t() 902 return (XDR_PUTINT32 (xdrs, (int32_t *)&t1) && in xdr_u_int64_t() 906 if (!XDR_GETINT32 (xdrs, (int32_t *)&t1) || in xdr_u_int64_t() 909 *ullp = ((u_int64_t) t1) << 32; in xdr_u_int64_t() [all …]
|
/picolibc-latest/newlib/libc/machine/mips/machine/ |
D | regdef.h | 60 #define t1 $13 macro 69 #define t1 $9 macro
|