HomeSort by: relevance | last modified time | path
    Searched defs:one (Results 1 - 25 of 250) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /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
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_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_145.c 9 unsigned one: 1; member in struct:bits
19 return sizeof(local_bits.one);
  /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_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_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));
  /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_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_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;

Completed in 118 milliseconds

1 2 3 4 5 6 7 8 910