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

12

/freebsd-9.3-release/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-9.3-release/tools/regression/lib/msun/
H A Dtest-exponential.c73 test(exp2, x, result, exceptmask, excepts); \
132 * We should insist that exp2() return exactly the correct
142 assert(exp2(i) == ldexp(1.0, i));
/freebsd-9.3-release/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-9.3-release/contrib/libstdc++/include/tr1/
H A Dmath.h56 using std::tr1::exp2;
/freebsd-9.3-release/lib/msun/
H A DSymbol.map88 exp2;
H A DMakefile159 exp.3 exp2.3 exp.3 exp2f.3 exp.3 exp2l.3 exp.3 expf.3
/freebsd-9.3-release/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-9.3-release/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-9.3-release/include/
H A Dtgmath.h168 #define exp2(x) __tg_simple(x, exp2) macro
/freebsd-9.3-release/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-9.3-release/lib/msun/src/
H A Ds_exp2.c50 /* exp2(z + eps) eps */
310 * exp2(x): compute the base 2 exponential of x
318 * Thus we have exp2(x) = 2**k * exp2(y).
322 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]),
325 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via
328 * exp2t[i] = exp2(
341 exp2(double x) function
[all...]
H A Dmath.h228 double exp2(double);
/freebsd-9.3-release/tools/regression/include/tgmath/
H A Dtgmath.c110 TGMACRO_REAL(exp2)
496 PRINT("exp2",
497 PASS_REAL_ARG_REAL_RET(exp2));
/freebsd-9.3-release/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
H A Dc-parser.c3539 tree exp1, exp2;
3550 exp2 = c_parser_expr_no_commas (parser, NULL).value;
3552 label = do_case (exp1, exp2);
4443 struct c_expr cond, exp1, exp2, ret;
4476 exp2 = c_parser_conditional_expression (parser, NULL);
4477 exp2 = default_function_array_conversion (exp2);
4479 ret.value = build_conditional_expr (cond.value, exp1.value, exp2.value);
3537 tree exp1, exp2; local
4441 struct c_expr cond, exp1, exp2, ret; local
/freebsd-9.3-release/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-9.3-release/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-9.3-release/lib/msun/ld80/
H A Ds_exp2l.c202 * Thus we have exp2l(x) = 2**k * exp2(y).
206 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z),
209 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z) via a
244 * broken. Call exp2() to get an accurate (double precision) result.
247 return (exp2(x));
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp258 case Intrinsic::exp2:
/freebsd-9.3-release/contrib/llvm/lib/Target/
H A DTargetLibraryInfo.cpp115 "exp2",
452 TLI.setUnavailable(LibFunc::exp2);
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1160 // pow(2.0, x) -> exp2(x)
1162 hasUnaryFloatFn(TLI, Op1->getType(), LibFunc::exp2, LibFunc::exp2f,
1164 return EmitUnaryFloatFnCall(Op2, "exp2", B, Callee->getAttributes());
1209 if (UnsafeFPShrink && Callee->getName() == "exp2" &&
1223 // Turn exp2(sitofp(x)) -> ldexp(1.0, sext(x)) if sizeof(x) <= 32
1224 // Turn exp2(uitofp(x)) -> ldexp(1.0, zext(x)) if sizeof(x) < 32
2009 case Intrinsic::exp2:
2077 case LibFunc::exp2:
2220 // * log(exp2(y)) -> y*log(2)
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1896 case Intrinsic::exp2:
1947 case LibFunc::exp2:
1950 return checkUnaryFloatSignature(*CI, Intrinsic::exp2);

Completed in 200 milliseconds

12