Searched refs:exp2 (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-10-stable/crypto/heimdal/lib/kadm5/
H A Dget_princs_s.c40 char *exp2; member in struct:foreach_data
67 if(fnmatch(d->exp, princ, 0) == 0 || fnmatch(d->exp2, princ, 0) == 0)
97 asprintf(&d.exp2, "%s@%s", expression, r);
111 free(d.exp2);
/freebsd-10-stable/bin/sh/tests/errors/
H A DMakefile17 FILES+= bad-parm-exp2.2 bad-parm-exp2.2.stderr
/freebsd-10-stable/usr.bin/rpcgen/
H A Drpc_util.h181 void expected2(tok_kind exp1, tok_kind exp2);
182 void expected3(tok_kind exp1, tok_kind exp2, tok_kind exp3);
H A Drpc_util.c304 expected2(tok_kind exp1, tok_kind exp2) argument
308 toktostr(exp2));
316 expected3(tok_kind exp1, tok_kind exp2, tok_kind exp3) argument
320 toktostr(exp2),
/freebsd-10-stable/lib/msun/tests/
H A Dexponential_test.c72 test(exp2, x, result, exceptmask, excepts); \
131 * We should insist that exp2() return exactly the correct
141 assert(exp2(i) == ldexp(1.0, i));
/freebsd-10-stable/contrib/netbsd-tests/lib/libm/
H A Dt_ldexp.c51 int exp2; member in struct:ldexp_test
175 if (table->exp2 != SKIP)
176 v = ldexp(v, table->exp2);
192 atf_tc_set_md_var(tc, "descr", "Test ldexp(x, n) == x * exp2(n)");
211 if (fabs(y - (x * exp2(n[i]))) > eps) {
213 "!= %0.01f * exp2(%0.01f)", x, n[i], x, n[i]);
H A Dt_exp.c54 * exp2/exp2f(3)
56 ATF_LIBM_TEST(exp2_is_nan, "Test exp2(x) == NaN")
59 T_LIBM_CHECK_NAN(0, exp2, T_LIBM_NAN);
66 ATF_LIBM_TEST(exp2_is_plus_zero, "Test exp2(x) == +0.0")
69 T_LIBM_CHECK_PLUS_ZERO(0, exp2, T_LIBM_MINUS_INF);
76 ATF_LIBM_TEST(exp2_powers, "Test exp2(x) is correct for some integer x")
139 T_LIBM_CHECK(i, exp2, v[i].x, v[i].d_y, 0.0);
144 ATF_LIBM_TEST(exp2_values, "Test exp2(x) is correct for some x")
179 T_LIBM_CHECK(i, exp2, v[i].x, v[i].d_y, v[i].d_eps);
/freebsd-10-stable/contrib/libstdc++/include/tr1/
H A Dmath.h56 using std::tr1::exp2;
/freebsd-10-stable/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h198 /// double exp2(double x);
199 exp2, enumerator in enum:llvm::LibFunc::Func
713 case LibFunc::exp2: case LibFunc::exp2f: case LibFunc::exp2l:
/freebsd-10-stable/lib/msun/
H A DSymbol.map88 exp2;
H A DMakefile172 exp.3 powl.3 exp.3 exp2.3 exp.3 exp2f.3 exp.3 exp2l.3 exp.3 expf.3 \
/freebsd-10-stable/contrib/binutils/gas/config/
H A Dtc-s390.c720 static int s390_exp_compare PARAMS ((expressionS *exp1, expressionS *exp2));
836 s390_exp_compare (exp1, exp2)
838 expressionS *exp2;
840 if (exp1->X_op != exp2->X_op)
847 return exp1->X_add_number == exp2->X_add_number;
857 return (exp1->X_add_symbol == exp2->X_add_symbol)
858 && (exp1->X_add_number == exp2->X_add_number);
879 return (exp1->X_add_symbol == exp2->X_add_symbol)
880 && (exp1->X_op_symbol == exp2->X_op_symbol)
881 && (exp1->X_add_number == exp2
[all...]
H A Dtc-sparc.c213 expressionS exp2; member in struct:sparc_it
2446 the_insn.exp2 = the_insn.exp;
2448 if (the_insn.exp2.X_op == O_absent)
2449 the_insn.exp2.X_op = O_illegal;
2452 the_insn.exp = the_insn.exp2;
2453 the_insn.exp2.X_op = O_illegal;
2503 the_insn.exp = the_insn.exp2;
2505 the_insn.exp2.X_op = O_illegal;
2508 else if (the_insn.exp2.X_op != O_constant)
2947 fixP->tc_fix_data = the_insn->exp2
[all...]
/freebsd-10-stable/include/
H A Dtgmath.h169 #define exp2(x) __tg_simple(x, exp2) macro
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp158 case Intrinsic::exp2:
159 EnsureFPIntrinsicsExist(M, I, "exp2f", "exp2", "exp2l");
522 case Intrinsic::exp2: {
523 ReplaceFPIntrinsicWithCall(CI, "exp2f", "exp2", "exp2l");
H A DBasicTargetTransformInfo.cpp452 case Intrinsic::exp2: ISD = ISD::FEXP2; break;
/freebsd-10-stable/tools/regression/include/tgmath/
H A Dtgmath.c110 TGMACRO_REAL(exp2)
496 PRINT("exp2",
497 PASS_REAL_ARG_REAL_RET(exp2));
/freebsd-10-stable/lib/msun/src/
H A Ds_exp2.c51 /* exp2(z + eps) eps */
311 * exp2(x): compute the base 2 exponential of x
319 * Thus we have exp2(x) = 2**k * exp2(y).
323 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]),
326 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via
329 * exp2t[i] = exp2(
342 exp2(double x) function
[all...]
H A Dmath.h279 double exp2(double);
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/db/
H A Dt_db.sh1171 }' > exp2
1173 atf_check -o file:exp2 \
/freebsd-10-stable/contrib/gcc/
H A Dpostreload-gcse.c308 Return nonzero if exp1 is equivalent to exp2. */
314 struct expr *exp2 = (struct expr *) exp2p;
315 int equiv_p = exp_equiv_p (exp1->expr, exp2->expr, 0, true);
317 gcc_assert (!equiv_p || exp1->hash == exp2->hash);
310 struct expr *exp2 = (struct expr *) exp2p; local
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/
H A Dtgmath.h662 // exp2
670 __tg_exp2(double __x) {return exp2(__x);}
676 #undef exp2 macro
677 #define exp2(__x) __tg_exp2(__tg_promote1((__x))(__x)) macro
/freebsd-10-stable/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp1187 case Intrinsic::exp2:
1232 return Name == "exp" || Name == "exp2";
1387 case Intrinsic::exp2:
1388 return ConstantFoldFP(exp2, V, Ty);
1417 if (Name == "exp2" && TLI->has(LibFunc::exp2)) {
1418 // Constant fold exp2(x) as pow(2,x) in case the host doesn't have a
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp258 case Intrinsic::exp2:
/freebsd-10-stable/contrib/llvm/lib/Target/
H A DTargetLibraryInfo.cpp115 "exp2",
452 TLI.setUnavailable(LibFunc::exp2);

Completed in 146 milliseconds

12