/src/usr.bin/make/unit-tests/ |
deptgt-order.mk | 5 all one two three: .PHONY target 7 two: one 12 # This .ORDER creates a circular dependency since 'three' depends on 'one' 13 # but 'one' is supposed to be built after 'three'. 15 .ORDER: three one
|
/src/tests/usr.bin/xlint/lint1/ |
msg_186.c | 9 unsigned one: 1; member in struct:bit_field
|
msg_145.c | 9 unsigned one: 1; member in struct:bits 19 return sizeof(local_bits.one);
|
msg_105.c | 15 * be used with one of its actual struct types. 18 struct one { struct
|
/src/lib/libm/noieee_src/ |
n_atan.c | 94 double one=1.0; local in function:__weak_alias 95 return(atan2(x,one)); 101 float one=1.0; local in function:atanf 102 return (float)atan2(x,one);
|
n_asincos.c | 103 double s,t,one=1.0; local in function:__weak_alias 107 s=copysign(x,one); 109 return(atan2(x,sqrt(one-x*x))); 111 { t=one-s; s=t+t; return(atan2(x,sqrt(s-t*t))); } 176 double t,one=1.0; local in function:acos 181 t=atan2(sqrt((one-x)/(one+x)),one); 183 t=atan2(one,0.0); /* t = PI/2 */
|
n_asinh.c | 89 one =1.0 ; variable in typeref:typename:const double 94 if((t=copysign(x,one))>small) 96 s=one/t; return(copysign(log1p(t+t/(s+sqrt(one+s*s))),x)); }
|
n_cosh.c | 66 * Note: .3465 is a number near one half of ln2. 118 one=1.0, small=1.0E-18; /* fl(1+small)==1 */ variable in typeref:typename:const double 124 if((x=copysign(x,one)) <= 22) { 126 if(x<small) { return(one+x); } 127 else {t=x+__exp__E(x,0.0);x=t+t; return(one+t*t/(2.0+x)); } 130 { t=exp(x); return((t+one/t)*half); }
|
n_sinh.c | 111 static const double one=1.0, half=1.0/2.0 ; local in function:sinh 116 sign=copysign(one,x); 117 x=copysign(x,one); 119 {t=expm1(x); return(copysign((t+t/(one+t))*half,sign));} 124 return(copysign(scalb(one+expm1((x-mln2hi)-mln2lo),max),sign));
|
n_tanh.c | 79 static const double one=1.0, two=2.0, small = 1.0e-10, big = 1.0e10; local in function:tanh 86 sign=copysign(one,x); 87 x=copysign(x,one); 89 if( x > one ) 90 return(copysign(one-two/(expm1(x+x)+two),sign));
|
/src/lib/libm/src/ |
e_acoshf.c | 25 one = 1.0, variable in typeref:typename:const float 45 return __ieee754_logf((float)2.0*x-one/(x+__ieee754_sqrtf(t-one))); 47 t = x-one;
|
e_acosh.c | 36 one = 1.0, variable in typeref:typename:const double 57 return __ieee754_log(2.0*x-one/(x+__ieee754_sqrt(t-one))); 59 t = x-one;
|
e_atanhf.c | 24 static const float one = 1.0, huge = 1e30; variable in typeref:typename:const float 43 t = (float)0.5*log1pf(t+t*x/(one-x)); 45 t = (float)0.5*log1pf((x+x)/(one-x));
|
e_coshf.c | 25 static const float one = 1.0, half=0.5; variable in typeref:typename:const float 42 w = one+t; 44 return one+(t*t)/(w+w);
|
s_modf.c | 31 static const double one = 1.0; variable in typeref:typename:const double 64 *iptr = x*one;
|
s_modff.c | 24 static const float one = 1.0; variable in typeref:typename:const float 52 *iptr = x*one;
|
e_atanh.c | 39 static const double one = 1.0, huge = 1e300; variable in typeref:typename:const double 59 t = 0.5*log1p(t+t*x/(one-x)); 61 t = 0.5*log1p((x+x)/(one-x));
|
e_cosh.c | 42 static const double one = 1.0, half=0.5, huge = 1.0e300; variable in typeref:typename:const double 61 w = one+t; 63 return one+(t*t)/(w+w);
|
e_sinh.c | 39 static const double one = 1.0, shuge = 1.0e307; variable in typeref:typename:const double 60 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */ 62 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one)); 63 return h*(t+t/(t+one));
|
e_sinhf.c | 24 static const float one = 1.0, shuge = 1.0e37; variable in typeref:typename:const float 43 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */ 45 if(ix<0x3f800000) return h*((float)2.0*t-t*t/(t+one)); 46 return h*(t+t/(t+one));
|
s_asinh.c | 33 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable in typeref:typename:const double 46 if(huge+x>one) return x; /* return x inexact except 0 */ 52 w = __ieee754_log(2.0*t+one/(__ieee754_sqrt(x*x+one)+t)); 55 w =log1p(fabs(x)+t/(one+__ieee754_sqrt(one+t)));
|
s_asinhf.c | 25 one = 1.0000000000e+00, /* 0x3F800000 */ variable in typeref:typename:const float 38 if(huge+x>one) return x; /* return x inexact except 0 */ 44 w = __ieee754_logf((float)2.0*t+one/(__ieee754_sqrtf(x*x+one)+t)); 47 w =log1pf(fabsf(x)+t/(one+__ieee754_sqrtf(one+t)));
|
s_tanh.c | 28 * 2. 0 <= x <= 2**-55 : tanh(x) := x*(one+x) 45 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable in typeref:typename:const double 59 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */ 60 else return one/x-one; /* tanh(NaN) = NaN */ 66 return x*(one+x); /* tanh(small) = small */ 69 z = one - two/(t+two); 76 z = one - tiny; /* raised inexact flag */
|
s_tanhf.c | 24 static const float one=1.0, two=2.0, tiny = 1.0e-30; variable in typeref:typename:const float 37 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */ 38 else return one/x-one; /* tanh(NaN) = NaN */ 44 return x*(one+x); /* tanh(small) = small */ 47 z = one - two/(t+two); 54 z = one - tiny; /* raised inexact flag */
|
k_cosdf.c | 26 one = 1.0, variable in typeref:typename:const double 44 return ((one+z*C0) + w*C1) + (w*z)*r;
|