/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | IntegerDivision.cpp | 433 bool llvm::expandDivision(BinaryOperator *Div) { in expandDivision() argument 434 assert((Div->getOpcode() == Instruction::SDiv || in expandDivision() 435 Div->getOpcode() == Instruction::UDiv) && in expandDivision() 438 IRBuilder<> Builder(Div); in expandDivision() 440 assert(!Div->getType()->isVectorTy() && "Div over vectors not supported"); in expandDivision() 441 assert((Div->getType()->getIntegerBitWidth() == 32 || in expandDivision() 442 Div->getType()->getIntegerBitWidth() == 64) && in expandDivision() 446 if (Div->getOpcode() == Instruction::SDiv) { in expandDivision() 448 Value *Quotient = generateSignedDivisionCode(Div->getOperand(0), in expandDivision() 449 Div->getOperand(1), Builder); in expandDivision() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | checkJsxChildrenProperty2.js | 33 <div> My Div </div> 39 <div> My Div </div> 45 <div> My Div </div> 51 <div> My Div </div> 52 <div> My Div </div> 76 <div> My Div </div> 80 <div> My Div </div> 84 <div> My Div </div> 88 <div> My Div </div> 89 <div> My Div </div>
|
D | checkJsxChildrenProperty2.types | 82 ><Comp a={10} b="hi"> <div> My Div </div> {(name: string) => <div> My name {name} </d… 88 <div> My Div </div> 89 ><div> My Div </div> : JSX.Element 108 ><Comp a={10} b="hi"> <div> My Div </div> {1000000} </Comp> : JSX.Element 114 <div> My Div </div> 115 ><div> My Div </div> : JSX.Element 129 ><Comp a={10} b="hi" > <div> My Div </div> hi hi hi! </Comp> : JSX.Element 135 <div> My Div </div> 136 ><div> My Div </div> : JSX.Element 148 ><Comp a={10} b="hi" > <div> My Div </div> <div> My Div </div> </Comp> : JSX.Eleme… [all …]
|
D | tsxElementResolution8.types | 8 var Div = 3; 9 >Div : number 12 <Div />; 13 ><Div /> : JSX.Element 14 >Div : number
|
D | tsxElementResolution8.js | 8 var Div = 3; 9 <Div />; 40 var Div = 3; variable 41 <Div />;
|
D | tsxElementResolution8.symbols | 13 var Div = 3; 14 >Div : Symbol(Div, Decl(file.tsx, 6, 3)) 16 <Div />; 17 >Div : Symbol(Div, Decl(file.tsx, 6, 3))
|
D | tsxElementResolution8.errors.txt | 1 tests/cases/conformance/jsx/file.tsx(8,2): error TS2604: JSX element type 'Div' does not have any c… 12 var Div = 3; 13 <Div />; 15 !!! error TS2604: JSX element type 'Div' does not have any construct or call signatures.
|
D | checkJsxChildrenProperty2.errors.txt | 48 <div> My Div </div> 56 <div> My Div </div> 64 <div> My Div </div> 72 <div> My Div </div> 73 <div> My Div </div>
|
D | checkJsxChildrenProperty2.symbols | 81 <div> My Div </div> 102 <div> My Div </div> 118 <div> My Div </div> 134 <div> My Div </div> 138 <div> My Div </div>
|
/third_party/mindspore/mindspore/core/ops/ |
D | div.h | 31 class MS_CORE_API Div : public PrimitiveC { 34 Div() : PrimitiveC(kNameDiv) { InitIOName({"x", "y"}, {"output"}); } in Div() function 35 …explicit Div(const std::string k_name) : PrimitiveC(k_name) { InitIOName({"x", "y"}, {"output"}); } in Div() function 37 ~Div() = default; 38 MS_DECLARE_PARENT(Div, PrimitiveC); 44 using PrimDivPtr = std::shared_ptr<Div>;
|
/third_party/grpc/src/php/tests/generated_code/ |
D | AbstractGeneratedCodeTest.php | 60 $call = self::$client->Div($div_arg); 67 $call = self::$client->Div($div_arg, [' ' => 'abc123']); 75 $call = self::$client->Div($div_arg, ['somekey' => ['abc123']]); 86 $call = self::$client->Div($div_arg, ['somekey_-1' => ['abc123']]); 96 $call = self::$client->Div($div_arg, ['someKEY._-1' => ['abc123']]); 105 $call = self::$client->Div($div_arg, ['(somekey)' => ['abc123']]); 111 $call = self::$client->Div($div_arg); 120 $call = self::$client->Div($div_arg, [], ['timeout' => 1]); 128 $call = self::$client->Div($div_arg); 139 $call = self::$client->Div($div_arg, array(), array( [all …]
|
D | math_server.js | 36 function Div(call, callback) { class 118 Div: Div, property
|
/third_party/typescript/tests/cases/conformance/jsx/ |
D | checkJsxChildrenProperty2.tsx | 39 <div> My Div </div> 45 <div> My Div </div> 51 <div> My Div </div> 57 <div> My Div </div> 58 <div> My Div </div>
|
D | tsxElementResolution8.tsx | 9 var Div = 3; 10 <Div />;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | IntegerDivision.h | 41 bool expandDivision(BinaryOperator* Div); 62 bool expandDivisionUpTo32Bits(BinaryOperator *Div); 68 bool expandDivisionUpTo64Bits(BinaryOperator *Div);
|
/third_party/mindspore/mindspore/core/ops/fusion/ |
D | div_fusion.h | 27 class MS_CORE_API DivFusion : public Div { 30 DivFusion() : Div(kNameDivFusion) {} in DivFusion() 35 MS_DECLARE_PARENT(DivFusion, Div);
|
/third_party/grpc/src/csharp/Grpc.Examples.Tests/ |
D | MathClientMockableTest.cs | 39 …mockClient.Setup(m => m.Div(Moq.It.IsAny<DivArgs>(), null, null, CancellationToken.None)).Returns(… in ClientBaseBlockingUnaryCallCanBeMocked() 40 Assert.AreSame(expected, mockClient.Object.Div(new DivArgs())); in ClientBaseBlockingUnaryCallCanBeMocked() 49 …mockClient.Setup(m => m.Div(Moq.It.IsAny<DivArgs>(), Moq.It.IsAny<CallOptions>())).Returns(expecte… in ClientBaseBlockingUnaryCallWithCallOptionsCallCanBeMocked() 50 Assert.AreSame(expected, mockClient.Object.Div(new DivArgs(), new CallOptions())); in ClientBaseBlockingUnaryCallWithCallOptionsCallCanBeMocked()
|
D | MathClientServerTests.cs | 64 DivReply response = client.Div(new DivArgs { Dividend = 10, Divisor = 3 }); in Div1() 72 DivReply response = client.Div(new DivArgs { Dividend = 0, Divisor = 1 }); in Div2() 80 … var ex = Assert.Throws<RpcException>(() => client.Div(new DivArgs { Dividend = 0, Divisor = 0 })); in DivByZero()
|
/third_party/grpc/src/csharp/Grpc.Examples/ |
D | MathGrpc.cs | 110 …public virtual global::System.Threading.Tasks.Task<global::Math.DivReply> Div(global::Math.DivArgs… in Div() method in Math.Math.MathBase 190 …public virtual global::Math.DivReply Div(global::Math.DivArgs request, grpc::Metadata headers = nu… in Div() method in Math.Math.MathClient 192 return Div(request, new grpc::CallOptions(headers, deadline, cancellationToken)); in Div() 201 … public virtual global::Math.DivReply Div(global::Math.DivArgs request, grpc::CallOptions options) in Div() method in Math.Math.MathClient 315 .AddMethod(__Method_Div, serviceImpl.Div) in BindService() 327 … null : new grpc::UnaryServerMethod<global::Math.DivArgs, global::Math.DivReply>(serviceImpl.Div)); in BindService()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/ |
D | arithmetic_cpu_kernel.h | 45 void Div(const T *input1, const T *input2, T *out) const; 77 MS_REG_CPU_KERNEL_T(Div, KernelAttr(), ArithmeticCPUKernel, int32_t); 78 MS_REG_CPU_KERNEL_T(Div, KernelAttr(), ArithmeticCPUKernel, float); 79 MS_REG_CPU_KERNEL_T(Div, KernelAttr(), ArithmeticCPUKernel, int64_t);
|
/third_party/mindspore/tests/mindspore_test_framework/apps/ |
D | test_no_facade.py | 41 def Div(x, y): function 66 'block': Div
|
/third_party/abseil-cpp/absl/random/internal/ |
D | nanobenchmark_test.cc | 25 uint64_t Div(const void*, FuncInput in) { in Div() function 37 const size_t num_results = Measure(&Div, nullptr, inputs, N, results, params); in MeasureDiv()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
D | nanobenchmark_test.cc | 25 uint64_t Div(const void*, FuncInput in) { in Div() function 37 const size_t num_results = Measure(&Div, nullptr, inputs, N, results, params); in MeasureDiv()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/math/ |
D | broadcast_complex_gpu_kernel.cc | 40 MS_REG_BROADCAST_COMPLEX_GPU_KERNEL(Div, kNumberTypeComplex64, kNumberTypeFloat32, Complex<float>, … 41 MS_REG_BROADCAST_COMPLEX_GPU_KERNEL(Div, kNumberTypeComplex128, kNumberTypeFloat64, Complex<double>…
|
/third_party/boost/boost/hana/ |
D | div.hpp | 33 using Div = BOOST_HANA_DISPATCH_IF(decltype(div_impl<T, U>{}), in operator ()() typedef 51 return Div::apply(static_cast<X&&>(x), static_cast<Y&&>(y)); in operator ()()
|