/third_party/mindspore/mindspore/core/ops/ |
D | zeros.h | 31 class MS_CORE_API Zeros : public PrimitiveC { 34 Zeros() : PrimitiveC(prim::kPrimZeros->name()) {} in Zeros() function 36 ~Zeros() = default; 37 MS_DECLARE_PARENT(Zeros, PrimitiveC);
|
D | zeros.cc | 68 REGISTER_PRIMITIVE_EVAL_IMPL(Zeros, prim::kPrimZeros, ZerosInfer, ZerosInferValue, false);
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
D | FloatLex_test.cpp | 62 static std::string Zeros(size_t count) { return std::string(count, '0'); } in Zeros() function in FloatLexTest 86 ss << "0." << TestFixture::Zeros(100) << "125e102"; in TYPED_TEST() 93 ss << "9" << TestFixture::Zeros(100) << ".0e-100"; in TYPED_TEST() 100 ss << "0." << TestFixture::Zeros(5000) << "125e5002"; in TYPED_TEST() 107 ss << "9" << TestFixture::Zeros(5000) << ".0e-5000"; in TYPED_TEST() 207 ss << "1" << TestFixture::Zeros(32) << ".0e2147483640"; in TYPED_TEST() 214 ss << "0." << TestFixture::Zeros(32) << "1e-2147483640"; in TYPED_TEST()
|
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
D | FloatLex_test.cpp | 62 static std::string Zeros(size_t count) { return std::string(count, '0'); } in Zeros() function in FloatLexTest 86 ss << "0." << TestFixture::Zeros(100) << "125e102"; in TYPED_TEST() 93 ss << "9" << TestFixture::Zeros(100) << ".0e-100"; in TYPED_TEST() 100 ss << "0." << TestFixture::Zeros(5000) << "125e5002"; in TYPED_TEST() 107 ss << "9" << TestFixture::Zeros(5000) << ".0e-5000"; in TYPED_TEST() 207 ss << "1" << TestFixture::Zeros(32) << ".0e2147483640"; in TYPED_TEST() 214 ss << "0." << TestFixture::Zeros(32) << "1e-2147483640"; in TYPED_TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | ScaledNumber.cpp | 65 if (int Zeros = countLeadingZeros(Dividend64)) { in divide32() local 66 Shift -= Zeros; in divide32() 67 Dividend64 <<= Zeros; in divide32() 87 if (int Zeros = countTrailingZeros(Divisor)) { in divide64() local 88 Shift -= Zeros; in divide64() 89 Divisor >>= Zeros; in divide64() 97 if (int Zeros = countLeadingZeros(Dividend)) { in divide64() local 98 Shift -= Zeros; in divide64() 99 Dividend <<= Zeros; in divide64()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceELFStreamer.h | 77 static const char Zeros[16] = {0}; in writeZeroPadding() local 80 writeBytes(llvm::StringRef(Zeros, 16)); in writeZeroPadding() 82 writeBytes(llvm::StringRef(Zeros, N % 16)); in writeZeroPadding()
|
D | IceASanInstrumentation.cpp | 285 const SizeT Zeros = VarSize >> ShadowScaleLog2; in instrumentFuncStart() local 288 ((VarSize + RzPadding) >> ShadowScaleLog2) - Zeros - 1; in instrumentFuncStart() 289 if (Zeros > 0) in instrumentFuncStart() 290 PoisonVals.emplace_back(Entry{Zeros, 0}); in instrumentFuncStart()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/Disassembler/ |
D | PPCDisassembler.cpp | 314 unsigned Zeros = countTrailingZeros(Imm); in decodeCRBitMOperand() local 315 assert(Zeros < 8 && "Invalid CR bit value"); in decodeCRBitMOperand() 317 Inst.addOperand(MCOperand::createReg(CRRegs[7 - Zeros])); in decodeCRBitMOperand()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonConstPropagation.cpp | 409 bool evaluateCLBr(const RegisterSubReg &R1, bool Zeros, bool Ones, 411 bool evaluateCLBi(const APInt &A1, bool Zeros, bool Ones, APInt &Result); 412 bool evaluateCTBr(const RegisterSubReg &R1, bool Zeros, bool Ones, 414 bool evaluateCTBi(const APInt &A1, bool Zeros, bool Ones, APInt &Result); 1663 bool MachineConstEvaluator::evaluateCLBr(const RegisterSubReg &R1, bool Zeros, in evaluateCLBr() argument 1675 evaluateCLBi(A, Zeros, Ones, CA); in evaluateCLBr() 1684 bool MachineConstEvaluator::evaluateCLBi(const APInt &A1, bool Zeros, in evaluateCLBi() argument 1687 if (!Zeros && !Ones) in evaluateCLBi() 1690 if (Zeros && (Count == 0)) in evaluateCLBi() 1698 bool MachineConstEvaluator::evaluateCTBr(const RegisterSubReg &R1, bool Zeros, in evaluateCTBr() argument [all …]
|
/third_party/boost/libs/math/doc/sf/ |
D | airy.qbk | 232 [section:airy_root Finding Zeros of Airy Functions] 335 [h4 Examples of finding Airy Zeros] 387 [endsect] [/section:airy_root Finding Zeros of Airy Functions]
|
D | bessel_jy.qbk | 253 [section:bessel_root Finding Zeros of Bessel Functions of the First and Second Kinds] 478 [@http://dlmf.nist.gov/10.21#vi [sect]10.21(vi) McMahon's Asymptotic Expansions for Large Zeros] - … 544 [endsect] [/section:bessel Finding Zeros of Bessel Functions of the First and Second Kinds]
|
/third_party/mindspore/mindspore/ops/_grad/ |
D | grad_inner_ops.py | 94 dx = inner.MatrixSetDiag()(dout, P.Zeros()(diag_shape, grad_dtype), assist)
|
/third_party/mindspore/tests/ut/python/ops/ |
D | test_array_ops.py | 72 zeros = P.Zeros() 79 zeros = P.Zeros()
|
/third_party/python/Lib/test/decimaltestdata/ |
D | dqNextMinus.decTest | 75 -- Zeros
|
D | ddNextMinus.decTest | 75 -- Zeros
|
D | ddNextPlus.decTest | 71 -- Zeros
|
D | dqNextPlus.decTest | 71 -- Zeros
|
D | nextminus.decTest | 94 -- Zeros
|
D | nextplus.decTest | 94 -- Zeros
|
D | ddNextToward.decTest | 130 -- Zeros 224 -- Zeros
|
D | dqNextToward.decTest | 131 -- Zeros 225 -- Zeros
|
D | nexttoward.decTest | 145 -- Zeros 268 -- Zeros
|
/third_party/mindspore/mindspore/ops/operations/ |
D | __init__.py | 25 … Fill, Ones, Zeros, GatherNd, GatherV2, Gather, SparseGatherV2, InvertPermutation,
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineExtendedDynamicStateTests.cpp | 390 struct Zeros struct in vkt::pipeline::__anon85e540580111::MultipleBindingsVertex 394 Zeros (const tcu::Vec2&) in Zeros() argument 486 …result.push_back(createSingleBindingVertexData<Zeros>(coords, dataOffset, trailingPadding, padding… in createVertexData() 488 …result.push_back(createSingleBindingVertexData<Zeros>(coords, dataOffset, trailingPadding, padding… in createVertexData() 490 …result.push_back(createSingleBindingVertexData<Zeros>(coords, dataOffset, trailingPadding, padding… in createVertexData() 501 strides.push_back(static_cast<vk::VkDeviceSize>(sizeof(Zeros))); in getVertexDataStrides() 503 strides.push_back(static_cast<vk::VkDeviceSize>(sizeof(Zeros))); in getVertexDataStrides() 505 strides.push_back(static_cast<vk::VkDeviceSize>(sizeof(Zeros))); in getVertexDataStrides()
|
/third_party/libffi/ |
D | acinclude.m4 | 147 dnl set libat_gnu_ld_version to 12345. Zeros cause problems. 249 dnl set libat_gnu_ld_version to 12345. Zeros cause problems.
|