Searched refs:exp (Results 1 - 25 of 700) sorted by relevance

1234567891011>>

/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Duassert.h26 # define U_ASSERT(exp) assert(exp)
28 # define U_ASSERT(exp)
/macosx-10.9.5/dcerpc-58/dcerpc/idl_compiler/
H A Dastp_exp.c85 AST_exp_n_t * exp
93 AST_exp_n_t * exp = NEW(AST_exp_n_t); local
94 exp->exp_type = exp_type;
95 return exp;
105 AST_exp_n_t * exp = AST_exp_new(AST_EXP_CONSTANT); local
106 exp->exp.constant.type = AST_int_const_k;
107 exp->exp.constant.val.integer = value;
108 exp
118 AST_exp_n_t * exp = AST_exp_new(AST_EXP_CONSTANT); local
130 AST_exp_n_t * exp = AST_exp_new(AST_EXP_CONSTANT); local
143 AST_exp_n_t * exp = AST_exp_new(AST_EXP_CONSTANT); local
154 AST_exp_n_t * exp = AST_exp_new(AST_EXP_CONSTANT); local
166 AST_exp_n_t * exp = AST_exp_new(AST_EXP_CONSTANT); local
181 AST_exp_n_t * exp = AST_exp_new(exp_type); local
316 ASTP_free_exp(AST_exp_n_t * exp) argument
333 ASTP_evaluate_expr( parser_location_p location, AST_exp_n_t * exp, boolean constant_only ) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/tools/tests/libMicro/
H A Dexp.c32 * test exp performance (should add range check)
45 (void) sprintf(lm_usage, "note: measures exp()");
62 t += exp(value);
63 t += exp(value + 1.0);
64 t += exp(value + 2.0);
65 t += exp(value + 3.0);
66 t += exp(value + 4.0);
67 t += exp(value + 5.0);
68 t += exp(value + 6.0);
69 t += exp(valu
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/
H A Dm2.c30 int exp = 0; local
33 r |= ldexp(value, exp) != 0;
34 r |= frexp(value, &exp) != 0;
H A Dm3.c30 int exp = 0; local
33 r |= ldexpl(value, exp) != 0;
34 r |= frexpl(value, &exp) != 0;
/macosx-10.9.5/Libc-997.90.3/fbsdcompat/
H A Dfpmath.h38 unsigned int exp :8; member in struct:IEEEf2bits::__anon2832
42 unsigned int exp :8;
57 unsigned int exp :11; member in struct:IEEEd2bits::__anon2833
61 unsigned int exp :11;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/uwin/
H A Dcbrt.c34 return(exp(log(x)/3.0));
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/port/
H A Dastmath.c45 int exp = 0; local
49 return ldexpl(value, exp) != 0;
52 return ldexp(value, exp) != 0;
55 return frexpl(value, &exp) != 0;
58 return frexp(value, &exp) != 0;
/macosx-10.9.5/CPANInternal-140/URI/t/
H A Droy-test.t28 $exp = $2;
29 $exp = $base if $exp =~ /current/; # special case test 22
33 $exp = "http://a/b/c/d;p?y";
36 $exp = "http://a/b/c/d;p?y";
40 unless ($abs eq $exp) {
41 print "$file:$.: Expected: $exp\n";
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Math/
H A D15.8.2.8.js24 ECMA Section: 15.8.2.8 Math.exp(x)
41 var TITLE = "Math.exp(x)";
52 array[item++] = new TestCase( SECTION, "Math.exp.length", 1, Math.exp.length );
54 array[item++] = new TestCase( SECTION, "Math.exp()", Number.NaN, Math.exp() );
55 array[item++] = new TestCase( SECTION, "Math.exp(null)", 1, Math.exp(null) );
56 array[item++] = new TestCase( SECTION, "Math.exp(void 0)", Number.NaN, Math.exp(voi
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/intl/
H A Dplural.y35 #include "plural-exp.h"
52 struct expression *exp;
170 %type <exp> exp
174 start: exp
182 exp: exp '?' exp ':' exp label
186 | exp '|' ex
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/intl/
H A Dplural.y35 #include "plural-exp.h"
52 struct expression *exp;
170 %type <exp> exp
174 start: exp
182 exp: exp '?' exp ':' exp label
186 | exp '|' ex
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/os-win32/
H A Dstdbool.h36 #define CASSERT(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
/macosx-10.9.5/llvmCore-3425.0.33/utils/lit/lit/ExampleTests/LLVM.InTree/test/Bar/
H A Ddg.exp1 load_lib llvm.exp
/macosx-10.9.5/llvmCore-3425.0.33/utils/lit/lit/ExampleTests/LLVM.OutOfTree/src/test/Foo/
H A Ddg.exp1 load_lib llvm.exp
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/sfio/
H A Dsfdlen.c39 int exp; local
46 v = frexpl(v,&exp);
47 else exp = 0;
57 return 1 + sfulen(exp) + w;
/macosx-10.9.5/CPANInternal-140/Parse-Yapp/
H A DCalc.yp21 | exp '\n' { print "$_[1]\n" }
25 exp: NUM
27 | VAR '=' exp { $_[0]->YYData->{VARS}{$_[1]}=$_[3] }
28 | exp '+' exp { $_[1] + $_[3] }
29 | exp '-' exp { $_[1] - $_[3] }
30 | exp '*' exp { $_[1] * $_[3] }
31 | exp '/' ex
[all...]
/macosx-10.9.5/CPANInternal-140/Parse-Yapp-1.05/
H A DCalc.yp21 | exp '\n' { print "$_[1]\n" }
25 exp: NUM
27 | VAR '=' exp { $_[0]->YYData->{VARS}{$_[1]}=$_[3] }
28 | exp '+' exp { $_[1] + $_[3] }
29 | exp '-' exp { $_[1] - $_[3] }
30 | exp '*' exp { $_[1] * $_[3] }
31 | exp '/' ex
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/memchan/memchan/tools/
H A Dhtdocs_regen5 for i in `ls raw/*.exp`
7 echo $i '-->' `basename $i .exp`.html
8 ../tools/expand -rules ../tools/rules/memchan $i > `basename $i .exp`.html
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/tools/
H A Dhtdocs_regen5 for i in `ls raw/*.exp`
7 echo $i '-->' `basename $i .exp`.html
8 ../tools/expand -rules ../tools/rules/trf $i > `basename $i .exp`.html
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/tests/
H A Dleaks.sh62 for exp in 65535 65536
63 do got=$($SHELL -c 'x=$(printf "%.*c" '$exp' x); print ${#x}' 2>&1)
64 [[ $got == $exp ]] || err_exit "large command substitution failed -- expected $exp, got $got"
H A Dpath.sh166 do exp="$cmd found"
167 print print $exp > $cmd
170 [[ $got == $exp ]] && err_exit "$cmd as last command should not find ./$cmd with PATH=/dev/null"
172 [[ $got == $exp ]] && err_exit "$cmd should not find ./$cmd with PATH=/dev/null"
173 exp=$PWD/./$cmd
175 [[ $got == $exp ]] || err_exit "whence $cmd should find ./$cmd with PATH=/dev/null"
176 exp=$PWD/$cmd
178 [[ $got == $exp ]] || err_exit "whence \$PWD/$cmd should find ./$cmd with PATH=/dev/null"
181 exp=''
183 [[ $got == $exp ]] || err_exi
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/compat/
H A Dstrtod.c85 int exp = 0; /* Exponent read from "EX" field. */
208 exp = exp * 10 + (*p - '0');
213 exp = fracExp - exp;
215 exp = fracExp + exp;
224 if (exp < 0) {
226 exp = -exp;
84 int exp = 0; /* Exponent read from "EX" field. */ local
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/compat/
H A Dstrtod.c87 int exp = 0; /* Exponent read from "EX" field. */
211 exp = exp * 10 + (*p - '0');
216 exp = fracExp - exp;
218 exp = fracExp + exp;
228 if (exp < 0) {
230 exp = -exp;
86 int exp = 0; /* Exponent read from "EX" field. */ local
[all...]
/macosx-10.9.5/AppleUSBIrDA-145.2.4/
H A Dexport.sh6 rm -f AppleSCCIrDA/AppleSCCIrDA.exp
7 rm -f AppleUSBIrDA/AppleUSBIrDA.exp
18 awk ' { print $3 } ' > AppleSCCIrDA/AppleSCCIrDA.exp
22 awk ' { print $3 } ' > AppleUSBIrDA/AppleUSBIrDA.exp
24 ls -l AppleSCCIrDA/AppleSCCIrDA.exp
25 ls -l AppleUSBIrDA/AppleUSBIrDA.exp

Completed in 159 milliseconds

1234567891011>>