/external/llvm-project/mlir/lib/Transforms/ |
D | OpStats.cpp | 31 llvm::StringMap<int64_t> opCount; member 37 opCount.clear(); in runOnOperation() 40 getOperation()->walk([&](Operation *op) { ++opCount[op->getName().getStringRef()]; }); in runOnOperation() 47 SmallVector<StringRef, 64> sorted(opCount.keys()); in printSummary() 78 os << llvm::left_justify(opName, maxLenOpName) << " , " << opCount[key] in printSummary()
|
/external/skia/docs/examples/ |
D | Picture_approximateBytesUsed.cpp | 16 …std::string opCount = "approximate bytes used: " + std::to_string(picture->approximateBytesUsed()); 17 canvas->drawString(opCount.c_str(), 20, 220, SkPaint());
|
D | Picture_approximateOpCount.cpp | 16 std::string opCount = "approximate op count: " + std::to_string(picture->approximateOpCount()); 17 canvas->drawString(opCount.c_str(), 50, 220, SkPaint());
|
/external/deqp/modules/gles3/stress/ |
D | es3sLongShaderTests.cpp | 457 const deUint32 opCount = caseOpCounts[caseNdx]; in init() local 458 const deUint32 flags = (opCount <= requireLinkOkMaxOps) ? CASE_REQUIRE_LINK_STATUS_OK : 0; in init() 460 …const std::string name = de::toString(opCount) + "_operations_" + glu::getShaderTypeName(shader… in init() 461 … ") + glu::getShaderTypeName(shaderType) + " shader with " + de::toString(opCount) + " operations"; in init() 463 LongShaderSpec caseSpec (shaderType, opCount); in init()
|
/external/llvm-project/mlir/test/lib/Pass/ |
D | TestPassManager.cpp | 67 Statistic opCount{this, "num-ops", "Number of operations counted"}; member 70 getOperation()->walk([&](Operation *) { ++opCount; }); in runOnOperation()
|
/external/llvm-project/mlir/lib/Transforms/Utils/ |
D | LoopFusionUtils.cpp | 460 int64_t opCount = stats.opCountMap[forOp] - 1; in getComputeCostHelper() local 463 opCount += getComputeCostHelper(childForOp.getOperation(), stats, in getComputeCostHelper() 471 opCount += it->second; in getComputeCostHelper() 483 return tripCount * opCount; in getComputeCostHelper()
|
/external/skqp/docs/ |
D | SkPicture_Reference.bmh | 368 std::string opCount = "approximate op count: " + std::to_string(picture->approximateOpCount()); 369 canvas->drawString(opCount.c_str(), 50, 220, SkPaint()); 392 …std::string opCount = "approximate bytes used: " + std::to_string(picture->approximateBytesUsed()); 393 canvas->drawString(opCount.c_str(), 20, 220, SkPaint());
|
/external/libxml2/include/libxml/ |
D | xpath.h | 360 unsigned long opCount; member
|
/external/capstone/bindings/java/ |
D | TestX86.java | 106 int count = ins.opCount(X86_OP_IMM); in print_ins_detail()
|
/external/capstone/bindings/java/capstone/ |
D | Capstone.java | 216 public int opCount(int type) { in opCount() method in Capstone.CsInsn
|
/external/deqp/external/vulkancts/modules/vulkan/memory/ |
D | vktMemoryPipelineBarrierTests.cpp | 9072 size_t opCount) in createRenderPassCommands() argument 9078 for (; opNdx < opCount; opNdx++) in createRenderPassCommands() 9122 size_t opCount) in createSecondaryCmdCommands() argument 9128 for (; opNdx < opCount; opNdx++) in createSecondaryCmdCommands() 9172 size_t opCount) in createCmdCommands() argument 9186 for (; opNdx < opCount; opNdx++) in createCmdCommands() 9207 …ush_back(createRenderPassCommands(memory, nextOpRng, state, testConfig, opNdx, opCount).release()); in createCmdCommands() 9212 …(createSecondaryCmdCommands(memory, nextOpRng, state, testConfig.usage, opNdx, opCount).release()); in createCmdCommands() 9244 size_t opCount) in createCommands() argument 9250 commands.reserve(opCount); in createCommands() [all …]
|
D | vktMemoryMappingTests.cpp | 1413 const size_t opCount = 100; in iterate() local 1567 if (m_opNdx == opCount) in iterate()
|
/external/llvm-project/flang/lib/Optimizer/Dialect/ |
D | FIROps.cpp | 1194 const auto opCount = destOperands.size(); in build() local 1198 if (i < opCount) { in build()
|
/external/libxml2/ |
D | xpath.c | 768 xmlXPathCheckOpLimit(xmlXPathParserContextPtr ctxt, unsigned long opCount) { in xmlXPathCheckOpLimit() argument 771 if ((opCount > xpctxt->opLimit) || in xmlXPathCheckOpLimit() 772 (xpctxt->opCount > xpctxt->opLimit - opCount)) { in xmlXPathCheckOpLimit() 773 xpctxt->opCount = xpctxt->opLimit; in xmlXPathCheckOpLimit() 778 xpctxt->opCount += opCount; in xmlXPathCheckOpLimit() 13762 if (ctxt->opCount >= ctxt->opLimit) { in xmlXPathRunStreamEval() 13768 ctxt->opCount++; in xmlXPathRunStreamEval()
|
/external/llvm-project/flang/include/flang/Optimizer/Dialect/ |
D | FIROps.td | 623 const auto opCount = destOperands.size(); 627 if (i < opCount) { 902 const auto opCount = destOperands.size(); 906 if (i < opCount) {
|