Home
last modified time | relevance | path

Searched refs:sn (Results 1 – 8 of 8) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_sincosf.c37 sincosf(float x, float *sn, float *cs) in sincosf() argument
49 *sn = x; /* x with inexact if x != 0 */ in sincosf()
54 __kernel_sincosdf(x, sn, cs); in sincosf()
61 __kernel_sincosdf(x - p1pio2, cs, sn); in sincosf()
64 __kernel_sincosdf(x + p1pio2, cs, sn); in sincosf()
65 *sn = -*sn; in sincosf()
69 __kernel_sincosdf(x - p2pio2, sn, cs); in sincosf()
71 __kernel_sincosdf(x + p2pio2, sn, cs); in sincosf()
72 *sn = -*sn; in sincosf()
81 __kernel_sincosdf(x - p3pio2, cs, sn); in sincosf()
[all …]
Ds_sincos.c27 sincos(double x, double *sn, double *cs) in sincos() argument
40 *sn = x; in sincos()
45 __kernel_sincos(x, 0, 0, sn, cs); in sincos()
51 *sn = x - x; in sincos()
61 __kernel_sincos(y[0], y[1], 1, sn, cs); in sincos()
64 __kernel_sincos(y[0], y[1], 1, cs, sn); in sincos()
68 __kernel_sincos(y[0], y[1], 1, sn, cs); in sincos()
69 *sn = -*sn; in sincos()
73 __kernel_sincos(y[0], y[1], 1, cs, sn); in sincos()
74 *sn = -*sn; in sincos()
Ds_sincosl.c50 sincosl(long double x, long double *sn, long double *cs) in sincosl() argument
69 *sn = x; in sincosl()
72 __kernel_sincosl(x, 0, 0, sn, cs); in sincosl()
78 *sn = x - x; in sincosl()
88 __kernel_sincosl(y[0], y[1], 1, sn, cs); in sincosl()
91 __kernel_sincosl(y[0], y[1], 1, cs, sn); in sincosl()
95 __kernel_sincosl(y[0], y[1], 1, sn, cs); in sincosl()
96 *sn = -*sn; in sincosl()
100 __kernel_sincosl(y[0], y[1], 1, cs, sn); in sincosl()
101 *sn = -*sn; in sincosl()
De_powf.c62 float y1,t1,t2,r,s,sn,t,u,v,w; in __ieee754_powf() local
133 sn = one; /* s (sign of result -ve**odd) = -1 else = 1 */ in __ieee754_powf()
134 if((n|(yisint-1))==0) sn = -one;/* (-ve)**(odd int) */ in __ieee754_powf()
139 if(ix<0x3f7ffff8) return (hy<0)? sn*huge*huge:sn*tiny*tiny; in __ieee754_powf()
140 if(ix>0x3f800007) return (hy>0)? sn*huge*huge:sn*tiny*tiny; in __ieee754_powf()
213 return sn*huge*huge; /* overflow */ in __ieee754_powf()
215 if(p_l+ovt>z-p_h) return sn*huge*huge; /* overflow */ in __ieee754_powf()
218 return sn*tiny*tiny; /* underflow */ in __ieee754_powf()
220 if(p_l<=z-p_h) return sn*tiny*tiny; /* underflow */ in __ieee754_powf()
251 return sn*z; in __ieee754_powf()
Dk_sincosl.h51 __kernel_sincosl(long double x, long double y, int iy, long double *sn, in __kernel_sincosl() argument
65 *sn = x + v * (S1 + z * r); in __kernel_sincosl()
67 *sn = x - ((z * (y / 2 - v * r) - y) - v * S1); in __kernel_sincosl()
106 __kernel_sincosl(long double x, long double y, int iy, long double *sn, in __kernel_sincosl() argument
121 *sn = x + v * (S1 + z * r); in __kernel_sincosl()
Dk_sincos.h34 __kernel_sincos(double x, double y, int iy, double *sn, double *cs) in __kernel_sincos() argument
44 *sn = x + v * (S1 + z * r); in __kernel_sincos()
46 *sn = x - ((z * (y / 2 - v * r) - y) - v * S1); in __kernel_sincos()
Dk_sincosf.h32 __kernel_sincosdf(double x, float *sn, float *cs) in __kernel_sincosdf() argument
40 *sn = (x + s * (S1 + z * S2)) + s * w * r; in __kernel_sincosdf()
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregcomp.c1709 sopno sn; in doinsert() local
1719 sn = HERE(); in doinsert()
1721 assert(HERE() == sn+1); in doinsert()
1722 s = p->strip[sn]; in doinsert()