/picolibc-3.7.0-3.6.0/newlib/libc/machine/mips/ |
D | memset.S | 217 slti t2,a2,(2 * NSIZE) 218 bne t2,zero,L(lastb) 240 dsll t2,a1,8 241 or a1,t2 242 dsll t2,a1,16 243 or a1,t2 244 dsll t2,a1,32 245 or a1,t2 248 sll t2,a1,8 249 or a1,t2 [all …]
|
D | memcpy.S | 216 #define REG2 t2 293 PTR_SRA t2,t0,31 294 xor t1,t0,t2 295 PTR_SUBU t0,t1,t2 296 sltu t2,t0,a2 297 beq t2,zero,L(memcpy) 307 slti t2,a2,(2 * NSIZE) 308 bne t2,zero,L(lasts)
|
/picolibc-3.7.0-3.6.0/newlib/libm/math/ |
D | sf_hypot.c | 21 float a = x, b = y, t1, t2, y1, y2, w; in hypotf() local 75 t2 = a - t1; in hypotf() 76 w = sqrtf(t1 * t1 - (b * (-b) - t2 * (a + t1))); in hypotf() 82 t2 = a - t1; in hypotf() 83 w = sqrtf(t1 * y1 - (w * (-w) - (t1 * y2 + t2 * b))); in hypotf()
|
D | s_hypot.c | 53 __float64 a = x, b = y, t1, t2, y1, y2, w; in hypot64() local 119 t2 = a - t1; in hypot64() 120 w = sqrt64(t1 * t1 - (b * (-b) - t2 * (a + t1))); in hypot64() 128 t2 = a - t1; in hypot64() 129 w = sqrt64(t1 * y1 - (w * (-w) - (t1 * y2 + t2 * b))); in hypot64()
|
D | sf_log.c | 35 float hfsq, f, s, z, R, w, t1, t2, dk; in logf() local 82 t2 = z * (Lg1 + w * (Lg3 + w * (Lg5 + w * Lg7))); 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 134 t2 = z * (Lg1 + w * (Lg3 + w * (Lg5 + w * Lg7))); in log64() 136 R = t2 + t1; in log64()
|
D | sf_pow.c | 60 float y1, t1, t2, r, s, t, u, v, w; in powf() local 169 t2 = v - (t1 - u); in powf() 230 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h); in powf() 240 p_l = (y - y1) * t1 + y * t2; in powf()
|
D | s_pow.c | 101 __float64 y1, t1, t2, r, s, t, u, v, w; in pow64() local 234 t2 = v - (t1 - u); 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()
|
D | srf_lgamma.c | 43 t2 = 6.4624942839e-02, /* 0x3d845a15 */ variable 236 p3 = t2 + w * (t5 + w * (t8 + w * (t11 + w * t14))); in __math_lgammaf_r()
|
D | sr_lgamma.c | 111 t2 = 6.46249402391333854778e-02, /* 0x3FB08B42, 0x94D5419B */ variable 304 p3 = t2 + w * (t5 + w * (t8 + w * (t11 + w * t14))); in __math_lgamma_r()
|
/picolibc-3.7.0-3.6.0/newlib/libm/ld/ld128/ |
D | e_hypotl.c | 50 long double a,b,t1,t2,yy1,y2,w; in hypotl() local 103 t2 = a-t1; in hypotl() 104 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl() 112 t2 = a - t1; in hypotl() 113 w = sqrtl(t1*yy1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
|
D | e_powl.c | 146 long double yy1, t1, t2, r, s, t, u, v, w; in powl() local 370 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h); in powl() 383 p_l = (y - yy1) * t1 + y * t2; in powl()
|
/picolibc-3.7.0-3.6.0/newlib/libm/ld/ld80/ |
D | e_hypotl.c | 50 long double a,b,t1,t2,yy1,y2,w; in hypotl() local 104 t2 = a-t1; in hypotl() 105 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl() 114 t2 = a - t1; in hypotl() 115 w = sqrtl(t1*yy1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
|
/picolibc-3.7.0-3.6.0/newlib/libc/xdr/ |
D | xdr.c | 865 int32_t t1, t2; in xdr_int64_t() local 871 t2 = (int32_t) (*llp); 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() 878 *llp |= (uint32_t) t2; in xdr_int64_t() 895 uint32_t t1, t2; in xdr_u_int64_t() local 901 t2 = (uint32_t) (*ullp); in xdr_u_int64_t() 903 XDR_PUTINT32 (xdrs, (int32_t *)&t2)); in xdr_u_int64_t() 907 !XDR_GETINT32 (xdrs, (int32_t *)&t2)) in xdr_u_int64_t() 910 *ullp |= t2; in xdr_u_int64_t() [all …]
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/riscv/ |
D | memcpy-asm.S | 21 lb t2, 0(a1) 22 sb t2, 0(t1)
|
D | memmove.S | 29 lb t2, 0(a1) 30 sb t2, 0(t1)
|
D | strcmp.S | 34 li t2, -1 53 bne t0, t2, .Lnull\i
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/mips/machine/ |
D | regdef.h | 61 #define t2 $14 macro 70 #define t2 $10 macro
|
/picolibc-3.7.0-3.6.0/newlib/libm/common/ |
D | log2.c | 56 double_t z, r, r2, r4, y, invc, logc, kd, hi, lo, t1, t2, t3, p; variable 130 t2 = r * InvLn2lo + fma (r, InvLn2hi, -t1); 138 t2 = rlo * InvLn2hi + r * InvLn2lo; 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 97 t2 = t1 + r; in log_inline() 99 lo2 = t1 - t2 + r; in log_inline() 108 hi = t2 + ar2; in log_inline() 110 lo4 = t2 - hi + ar2; in log_inline() 114 hi = t2 + arhi2; in log_inline() 116 lo4 = t2 - hi + arhi2; in log_inline()
|
/picolibc-3.7.0-3.6.0/test/ |
D | time-tests.c | 104 time_t t2 = mktime( &dtForMktime2 ); in main() local 106 if ( t2 != t1 + 3 * 60 * 60 || // The chosen time zone has a positive 3-hour difference. in main()
|
/picolibc-3.7.0-3.6.0/newlib/ |
D | ChangeLog-2015 | 3953 for v7 or 6t2.
|