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

1234567891011>>

/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Duassert.h26 # define U_ASSERT(exp) assert(exp)
28 # define U_ASSERT(exp)
/macosx-10.10.1/dcerpc-61/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.10.1/xnu-2782.1.97/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.10.1/ksh-23/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.10.1/Libc-1044.1.2/fbsdcompat/
H A Dfpmath.h38 unsigned int exp :8; member in struct:IEEEf2bits::__anon2711
42 unsigned int exp :8;
57 unsigned int exp :11; member in struct:IEEEd2bits::__anon2712
61 unsigned int exp :11;
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/uwin/
H A Dcbrt.c34 return(exp(log(x)/3.0));
/macosx-10.10.1/ksh-23/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.10.1/JavaScriptCore-7600.1.17/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.10.1/bash-94.1.2/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...]
H A Dplural.c54 #include "plural-exp.h"
70 struct expression *exp; member in union:__anon6287
252 "start", "exp", 0
1034 if (yyvsp[0].exp == NULL)
1036 ((struct parse_args *) arg)->res = yyvsp[0].exp;
1042 yyval.exp = new_exp_3 (qmop, yyvsp[-4].exp, yyvsp[-2].exp, yyvsp[0].exp);
1048 yyval.exp
1373 const char *exp = *pexp; local
[all...]
/macosx-10.10.1/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...]
H A Dplural.c54 #include "plural-exp.h"
70 struct expression *exp; member in union:__anon7727
252 "start", "exp", 0
1034 if (yyvsp[0].exp == NULL)
1036 ((struct parse_args *) arg)->res = yyvsp[0].exp;
1042 yyval.exp = new_exp_3 (qmop, yyvsp[-4].exp, yyvsp[-2].exp, yyvsp[0].exp);
1048 yyval.exp
1373 const char *exp = *pexp; local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/utils/lit/lit/ExampleTests/LLVM.InTree/test/Bar/
H A Ddg.exp1 load_lib llvm.exp
/macosx-10.10.1/llvmCore-3425.0.34/utils/lit/lit/ExampleTests/LLVM.OutOfTree/src/test/Foo/
H A Ddg.exp1 load_lib llvm.exp
/macosx-10.10.1/ksh-23/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.10.1/CPANInternal-159.1/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.10.1/tcl-105/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.10.1/tcl-105/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.10.1/tcl-105/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.10.1/tcl-105/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.10.1/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
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/tests/
H A Dlocale.sh109 exp="6 2 6"
121 [[ $got == $exp ]] || err_exit "command wc LC_ALL default failed -- expected '$exp', got '$got'"
135 [[ $got == $exp ]] || err_exit "builtin wc LC_ALL default failed -- expected '$exp', got '$got'"
153 # exp LC_ALL LC_NUMERIC LANG
166 do exp=$1
181 got=$($SHELL -c "${T}print \$(( $exp ))" 2>&1)
182 [[ $got == $exp ]] || err_exit "${T} sequence failed -- expected '$exp', go
[all...]
/macosx-10.10.1/Libc-1044.1.2/gdtoa/FreeBSD/
H A Dgdtoa-strtord.c36 ULtod(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
38 ULtod(ULong *L, ULong *bits, Long exp, int k)
55 L[_0] = (bits[1] & ~0x100000) | ((exp + 0x3ff + 52) << 20);
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dlet.c51 char *exp; local
61 exp = string_list (list);
62 ret = evalexp (exp, &expok);
63 (void)free (exp);

Completed in 166 milliseconds

1234567891011>>