/src/usr.bin/make/unit-tests/ |
depsrc-silent.exp | 0 one
|
deptgt-order.exp | 1 Parsing deptgt-order.mk:15: .ORDER: three one 2 ParseDependency(.ORDER: three one) 3 # .ORDER forces 'three' to be made before 'one' 5 # one, unmade, type OP_DEPENDS|OP_PHONY, flags none 8 : 'Making two out of one.'
|
deptgt-main.exp | 1 This target real-main is the one that is made.
|
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_145.c | 9 unsigned one: 1; member in struct:bits 19 return sizeof(local_bits.one);
|
msg_186.c | 9 unsigned one: 1; member in struct:bit_field
|
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_pow.c | 116 #define endian (((*(int *) &one)) ? 1 : 0) 121 static const double zero=0.0, one=1.0, two=2.0, negone= -1.0; variable in typeref:typename:const double 143 return (one); 144 else if (y==one || (_IEEE && x != x)) 149 if ((t=fabs(x))==one) /* +-1 ** +-INF is NaN */ 151 else if (t>one) 158 return (one/x); 160 else if (copysign(one, x) == one) 169 else if (copysign(t,one) == one [all...] |
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));
|
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_cabs.c | 107 static const double zero=0, one=1, variable in typeref:typename:const double 116 x=copysign(x,one); 117 y=copysign(y,one); 125 { one+small; return(x); } 131 r=r+sqrt(one+r*r); } 143 return(copysign(y,one)); 148 return (copysign(x,one)); 154 else return(copysign(y,one)); /* y is INF */ 191 static const double zero=0, one=1; 200 x=copysign(x,one); [all...] |
n_floor.c | 138 const double one = 1.0; local in function:rint 144 if (copysign(x,one) >= L) /* already an integer */ 162 const double one = 1.0; local in function:lrint 168 if (copysign(x,one) >= L) /* already an integer */ 180 const double one = 1.0; local in function:llrint 186 if (copysign(x,one) >= L) /* already an integer */ 198 const float one = 1.0; local in function:lrintf 204 if (copysign(x,one) >= L) /* already an integer */ 216 const float one = 1.0; local in function:llrintf 222 if (copysign(x,one) >= L) /* already an integer * [all...] |
n_expm1.c | 38 * RETURN THE EXPONENTIAL OF X MINUS ONE 123 static const double one=1.0, half=1.0/2.0; local in function:expm1 150 { x=one-scalb(one,-k); z += __exp__E(z,c);} 152 { x = __exp__E(z,c)-scalb(one,-k); x+=z; z=one;} 154 { x = __exp__E(z,c)+z; z=one;} 164 { c=ln2hi+ln2lo; return(-one);} /* ??? -ragge */ 167 else return(-one); 173 return( finite(x) ? scalb(one,5000) : x) [all...] |
/src/lib/libm/src/ |
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 */
|
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)));
|
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_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_asinhl.c | 55 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ 80 if (huge + x > one) RETURNI(x); /* return x inexact except 0 */ 86 w = logl(2.0*t+one/(sqrtl(x*x+one)+t)); 89 w =log1pl(fabsl(x)+t/(one+sqrtl(one+t)));
|
/src/tests/usr.bin/xlint/lint2/ |
msg_010.exp | 1 func has its return value used in msg_010.c?(30) but doesn't return one [lint2:010]
|
/src/usr.bin/ctags/test/ |
ctags.test | 19 char qq[] = " quote(one,two) {int bar;} "; 40 multiple(one,two); \ 42 callroute(one,two); \ 52 routine1(one,two) /* comments here are fun... */ 56 } *one; 61 five(one,two); 63 routine2 (one,two) { puts("hello\n"); } 65 (one, 67 routine4(int one, char (*two)(void)) /* test ANSI arguments */
|