/third_party/boost/boost/multiprecision/ |
D | number.hpp | 1000 template <class Exp> 1001 BOOST_MP_CXX14_CONSTEXPR void do_assign(const Exp& e, const detail::add_immediates&) in do_assign() 1007 template <class Exp> 1008 BOOST_MP_CXX14_CONSTEXPR void do_assign(const Exp& e, const detail::subtract_immediates&) in do_assign() 1014 template <class Exp> 1015 BOOST_MP_CXX14_CONSTEXPR void do_assign(const Exp& e, const detail::multiply_immediates&) in do_assign() 1021 template <class Exp> 1022 BOOST_MP_CXX14_CONSTEXPR void do_assign(const Exp& e, const detail::multiply_add&) in do_assign() 1028 template <class Exp> 1029 BOOST_MP_CXX14_CONSTEXPR void do_assign(const Exp& e, const detail::multiply_subtract&) in do_assign() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMAddressingModes.h | 634 uint8_t Exp = (Imm >> 4) & 0x7; in getFPImmFloat() local 643 I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30; in getFPImmFloat() 644 I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25; in getFPImmFloat() 645 I |= (Exp & 0x3) << 23; in getFPImmFloat() 655 int32_t Exp = (Imm.lshr(10).getSExtValue() & 0x1f) - 15; // -14 to 15 in getFP16Imm() local 665 if (Exp < -3 || Exp > 4) in getFP16Imm() 667 Exp = ((Exp+3) & 0x7) ^ 4; in getFP16Imm() 669 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP16Imm() 681 int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127; // -126 to 127 in getFP32Imm() local 693 if (Exp < -3 || Exp > 4) in getFP32Imm() [all …]
|
/third_party/openssl/test/recipes/10-test_bn_data/ |
D | bnexp.txt | 8 # Exp tests. 10 # These test vectors satisfy A ^ E = Exp. 12 Exp = aa6d7ac431 16 Exp = 12d416b110dbb4e467ff0c89a22122f4da8240 20 Exp = 49a3b33e23d84f1ce0d5d83f5dcb651d50cf3920f0143da2310d0512a90a06cd8f38977df8a756c30883de38df092… 24 Exp = 5b4a0d5a956f885f275712b194459980f24708bfb6393d71bd37dce852ce455724f5ee5030775fb86b4295edc98af… 28 Exp = a0ea5f6a4de49beb8fb7f0dab280d6a32c5a3814c9a5153a7944cec0a9028497846a8a89044348721a0bb5f0c3ded…
|
/third_party/mindspore/mindspore/core/ops/ |
D | exp.h | 31 class MS_CORE_API Exp : public PrimitiveC { 34 Exp() : PrimitiveC(prim::kPrimExp->name()) { InitIOName({"x"}, {"y"}); } in Exp() function 35 explicit Exp(const std::string k_name) : PrimitiveC(k_name) { InitIOName({"x"}, {"y"}); } in Exp() function 37 ~Exp() = default; 38 MS_DECLARE_PARENT(Exp, PrimitiveC); 45 using PrimExpPtr = std::shared_ptr<Exp>;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | SMTAPI.h | 181 virtual void addConstraint(const SMTExprRef &Exp) const = 0; 214 virtual SMTExprRef mkBVNeg(const SMTExprRef &Exp) = 0; 217 virtual SMTExprRef mkBVNot(const SMTExprRef &Exp) = 0; 253 virtual SMTExprRef mkNot(const SMTExprRef &Exp) = 0; 269 virtual SMTExprRef mkBVSignExt(unsigned i, const SMTExprRef &Exp) = 0; 272 virtual SMTExprRef mkBVZeroExt(unsigned i, const SMTExprRef &Exp) = 0; 276 const SMTExprRef &Exp) = 0; 311 virtual SMTExprRef mkBVNegNoOverflow(const SMTExprRef &Exp) = 0; 325 virtual SMTExprRef mkFPNeg(const SMTExprRef &Exp) = 0; 328 virtual SMTExprRef mkFPIsInfinite(const SMTExprRef &Exp) = 0; [all …]
|
/third_party/mindspore/tests/ut/python/nn/probability/bijector/ |
D | test_exp.py | 23 b = msb.Exp() 28 msb.Exp(name=0.1) 36 self.b1 = msb.Exp() 37 self.b2 = msb.Exp() 59 self.b1 = msb.Exp() 60 self.b2 = msb.Exp()
|
D | test_invert_bijector.py | 28 b = msb.Invert(msb.Exp()) 34 msb.Invert(msb.Exp(), name=0.1) 48 self.inv1 = msb.Invert(msb.Exp()) 71 self.inv1 = msb.Invert(msb.Exp()) 96 self.inv1 = msb.Invert(msb.Exp())
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Z3Solver.cpp | 285 void addConstraint(const SMTExprRef &Exp) const override { in addConstraint() 286 Z3_solver_assert(Context.Context, Solver, toZ3Expr(*Exp).AST); in addConstraint() 298 SMTExprRef newExprRef(const SMTExpr &Exp) { in newExprRef() argument 299 auto It = CachedExprs.insert(toZ3Expr(Exp)); in newExprRef() 312 SMTSortRef getSort(const SMTExprRef &Exp) override { in getSort() argument 314 Z3Sort(Context, Z3_get_sort(Context.Context, toZ3Expr(*Exp).AST))); in getSort() 333 SMTExprRef mkBVNeg(const SMTExprRef &Exp) override { in mkBVNeg() argument 335 Z3Expr(Context, Z3_mk_bvneg(Context.Context, toZ3Expr(*Exp).AST))); in mkBVNeg() 338 SMTExprRef mkBVNot(const SMTExprRef &Exp) override { in mkBVNot() argument 340 Z3Expr(Context, Z3_mk_bvnot(Context.Context, toZ3Expr(*Exp).AST))); in mkBVNot() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/ |
D | AArch64AddressingModes.h | 347 uint8_t Exp = (Imm >> 4) & 0x7; in getFPImmFloat() local 357 I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30; in getFPImmFloat() 358 I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25; in getFPImmFloat() 359 I |= (Exp & 0x3) << 23; in getFPImmFloat() 369 int32_t Exp = (Imm.lshr(10).getSExtValue() & 0x1f) - 15; // -14 to 15 in getFP16Imm() local 379 if (Exp < -3 || Exp > 4) in getFP16Imm() 381 Exp = ((Exp+3) & 0x7) ^ 4; in getFP16Imm() 383 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP16Imm() 395 int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127; // -126 to 127 in getFP32Imm() local 407 if (Exp < -3 || Exp > 4) in getFP32Imm() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | indexingTypesWithNever.ts | 55 type Match<Exp, Act> = [Exp] extends [Act] 56 ? ([Act] extends [Exp] ? "Match" : "Did not match 2") 59 type ExpectType<Exp, Act> = Match<Exp, Act> extends "Match" 60 ? ({} extends Exp ? Match<Required<Exp>, Required<Act>> : "Match")
|
/third_party/typescript/tests/baselines/reference/ |
D | indexingTypesWithNever.js | 54 type Match<Exp, Act> = [Exp] extends [Act] 55 ? ([Act] extends [Exp] ? "Match" : "Did not match 2") 58 type ExpectType<Exp, Act> = Match<Exp, Act> extends "Match" 59 ? ({} extends Exp ? Match<Required<Exp>, Required<Act>> : "Match")
|
D | indexingTypesWithNever.symbols | 157 type Match<Exp, Act> = [Exp] extends [Act] 159 >Exp : Symbol(Exp, Decl(indexingTypesWithNever.ts, 52, 11)) 161 >Exp : Symbol(Exp, Decl(indexingTypesWithNever.ts, 52, 11)) 164 ? ([Act] extends [Exp] ? "Match" : "Did not match 2") 166 >Exp : Symbol(Exp, Decl(indexingTypesWithNever.ts, 52, 11)) 170 type ExpectType<Exp, Act> = Match<Exp, Act> extends "Match" 172 >Exp : Symbol(Exp, Decl(indexingTypesWithNever.ts, 56, 16)) 175 >Exp : Symbol(Exp, Decl(indexingTypesWithNever.ts, 56, 16)) 178 ? ({} extends Exp ? Match<Required<Exp>, Required<Act>> : "Match") 179 >Exp : Symbol(Exp, Decl(indexingTypesWithNever.ts, 56, 16)) [all …]
|
D | indexingTypesWithNever.types | 117 type Match<Exp, Act> = [Exp] extends [Act] 118 >Match : Match<Exp, Act> 120 ? ([Act] extends [Exp] ? "Match" : "Did not match 2") 123 type ExpectType<Exp, Act> = Match<Exp, Act> extends "Match" 124 >ExpectType : ExpectType<Exp, Act> 126 ? ({} extends Exp ? Match<Required<Exp>, Required<Act>> : "Match")
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Testing/Support/ |
D | SupportHelpers.h | 30 ExpectedHolder(ErrorHolder Err, Expected<T> &Exp) in ExpectedHolder() 31 : ErrorHolder(std::move(Err)), Exp(Exp) {} in ExpectedHolder() 33 Expected<T> &Exp; member 53 *Out << "succeeded with value " << ::testing::PrintToString(*Item.Exp); in PrintTo()
|
D | Error.h | 23 template <typename T> ExpectedHolder<T> TakeExpected(Expected<T> &Exp) { in TakeExpected() argument 24 return {TakeError(Exp.takeError()), Exp}; in TakeExpected() 27 template <typename T> ExpectedHolder<T> TakeExpected(Expected<T> &&Exp) { in TakeExpected() argument 28 return TakeExpected(Exp); in TakeExpected() 43 bool result = Matcher.MatchAndExplain(*Holder.Exp, listener); in MatchAndExplain()
|
/third_party/mindspore/mindspore/core/ops/fusion/ |
D | exp_fusion.h | 27 class MS_CORE_API ExpFusion : public Exp { 30 ExpFusion() : Exp(kNameExpFusion) { InitIOName({"x"}, {"y"}); } in ExpFusion() 35 MS_DECLARE_PARENT(ExpFusion, Exp);
|
/third_party/mindspore/tests/st/probability/bijector/ |
D | test_exp.py | 31 self.bijector = msb.Exp() 52 self.bijector = msb.Exp() 73 self.bijector = msb.Exp() 93 self.bijector = msb.Exp()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | LibCallsShrinkWrap.cpp | 429 Value *Exp = CI->getArgOperand(1); in generateCondForPow() local 442 if (!Exp->getType()->isFloatTy()) in generateCondForPow() 443 V = ConstantExpr::getFPExtend(V, Exp->getType()); in generateCondForPow() 444 return BBBuilder.CreateFCmp(CmpInst::FCMP_OGT, Exp, V); in generateCondForPow() 471 if (!Exp->getType()->isFloatTy()) in generateCondForPow() 472 V = ConstantExpr::getFPExtend(V, Exp->getType()); in generateCondForPow() 474 V0 = ConstantExpr::getFPExtend(V0, Exp->getType()); in generateCondForPow() 476 Value *Cond = BBBuilder.CreateFCmp(CmpInst::FCMP_OGT, Exp, V); in generateCondForPow()
|
/third_party/mindspore/mindspore/nn/probability/bijector/ |
D | exp.py | 19 class Exp(PowerTransform): class 57 super(Exp, self).__init__(name=name)
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | OptimalIntrinsics.cpp | 246 Float4 Exp(RValue<Float4> x) in Exp() function 267 return (optimal::Exp(x) - optimal::Exp(-x)) * Float4(0.5f); in Sinh() 272 return (optimal::Exp(x) + optimal::Exp(-x)) * Float4(0.5f); in Cosh() 277 Float4 e_x = optimal::Exp(x); in Tanh() 278 Float4 e_minus_x = optimal::Exp(-x); in Tanh()
|
D | EmulatedIntrinsics.cpp | 197 return Float4(0.5f) * (emulated::Exp(x) - emulated::Exp(-x)); in Sinh() 203 return Float4(0.5f) * (emulated::Exp(x) + emulated::Exp(-x)); in Cosh() 236 RValue<Float4> Exp(RValue<Float4> x) in Exp() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCAsmPrinter.cpp | 654 const MCExpr *Exp = in EmitInstruction() local 665 MCOperand::createExpr(MCBinaryExpr::createSub(Exp, PB, OutContext)); in EmitInstruction() 697 const MCExpr *Exp = in EmitInstruction() local 700 TmpInst.getOperand(1) = MCOperand::createExpr(Exp); in EmitInstruction() 709 const MCExpr *Exp = in EmitInstruction() local 719 TmpInst.getOperand(1) = MCOperand::createExpr(Exp); in EmitInstruction() 728 Exp = MCBinaryExpr::createSub(Exp, PB, OutContext); in EmitInstruction() 729 TmpInst.getOperand(1) = MCOperand::createExpr(Exp); in EmitInstruction() 757 const MCExpr *Exp = in EmitInstruction() local 759 TmpInst.getOperand(1) = MCOperand::createExpr(Exp); in EmitInstruction() [all …]
|
/third_party/boost/libs/spirit/doc/refcard/ |
D | spirit-reference.tex | 406 \\|bool parse<It, Exp>(|\cr 407 \\| It& first, It last, Exp const& expr);|\cr 408 \\|bool parse<It, Exp, A1, ..., An>(|\cr 409 \\| It& first, It last, Exp const& expr,|\cr 411 \\|bool phrase_parse<It, Exp, Skipper>(|\cr 412 \\| It& first, It last, Exp const& expr,|\cr 415 \\|bool phrase_parse<It, Exp, Skipper, A1, ..., An>(|\cr 416 \\| It& first, It last, Exp const& expr,|\cr 419 \\|bool phrase_parse<It, Exp, Skipper, A1, ..., An>(|\cr 420 \\| It& first, It last, Exp const& expr,|\cr [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APFloat.h | 449 friend IEEEFloat scalbn(IEEEFloat X, int Exp, roundingMode); 451 friend IEEEFloat frexp(const IEEEFloat &X, int &Exp, roundingMode); 584 IEEEFloat scalbn(IEEEFloat X, int Exp, IEEEFloat::roundingMode); 585 IEEEFloat frexp(const IEEEFloat &Val, int &Exp, IEEEFloat::roundingMode RM); 680 friend DoubleAPFloat scalbn(DoubleAPFloat X, int Exp, roundingMode); 681 friend DoubleAPFloat frexp(const DoubleAPFloat &X, int &Exp, roundingMode); 1202 friend APFloat scalbn(APFloat X, int Exp, roundingMode RM); 1203 friend APFloat frexp(const APFloat &X, int &Exp, roundingMode RM); 1213 inline APFloat scalbn(APFloat X, int Exp, APFloat::roundingMode RM) { in scalbn() argument 1215 return APFloat(scalbn(X.U.IEEE, Exp, RM), X.getSemantics()); in scalbn() [all …]
|
/third_party/skia/tests/sksl/intrinsics/ |
D | Exp.asm.frag | 109 %27 = OpExtInst %float %1 Exp %33 120 %41 = OpExtInst %v2float %1 Exp %44 135 %54 = OpExtInst %v3float %1 Exp %57 149 %68 = OpExtInst %v4float %1 Exp %70
|