Home
last modified time | relevance | path

Searched refs:emitCount (Results 1 – 25 of 33) sorted by relevance

12

/dports/biology/canu/canu-2.2/src/seqrequester/src/seqrequester/
H A Dshiftregister-emit-fast.C97 uint32 emitCount = 1; in emitShiftRegisterFast() local
117 emitCount++; in emitShiftRegisterFast()
119 emitCount = 1; in emitShiftRegisterFast()
121 if ((emitExtra == true) && (emitCount == srPar.order)) { in emitShiftRegisterFast()
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/CISACodeGen/
H A DLowerGSInterface.cpp241 Value* emitCount = I.getArgOperand(0); in updateCutVariables() local
247 emitCount, in updateCutVariables()
259 emitCount, in updateCutVariables()
328 Value* emitCount = I.getArgOperand(1); in updateStreamVariables() local
333 emitCount, in updateStreamVariables()
/dports/devel/hadoop/hadoop-1.2.1/src/examples/org/apache/hadoop/examples/
H A DSleepJob.java87 private int emitCount = 0; in getRecordReader() local
91 key.set(emitCount); in getRecordReader()
96 emitCount += emit; in getRecordReader()
/dports/devel/hadoop/hadoop-1.2.1/src/test/org/apache/hadoop/mapreduce/
H A DTestSleepJob.java95 private int emitCount = 0; in createRecordReader() local
107 key.set(emitCount); in createRecordReader()
112 emitCount += emit; in createRecordReader()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/
H A DSleepJob.java92 private int emitCount = 0; in createRecordReader() local
104 key.set(emitCount); in createRecordReader()
109 emitCount += emit; in createRecordReader()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryBasicGeometryShaderTests.cpp336 const deInt32 emitCount[4] = { 6, 0, m_maxEmitCount, 10 }; in bindDescriptorSets() local
337 …const VkBufferCreateInfo bufferCreateInfo = makeBufferCreateInfo(sizeof(emitCount), VK_BUFFER_USAG… in bindDescriptorSets()
343 deMemcpy(m_allocation->getHostPtr(), &emitCount[0], sizeof(emitCount)); in bindDescriptorSets()
346 …ptorBufferInfo bufferDescriptorInfo = makeDescriptorBufferInfo(*m_buffer, 0ull, sizeof(emitCount)); in bindDescriptorSets()
/dports/biology/haplohseq/haplohseq-0.1.2/src/hmm/
H A DHmm.h93 HmmKeyedMaps emitCount; variable
97 HmmKeyedMaps& getEmitCount() { return this->emitCount;} in getEmitCount()
H A DHmm.cpp573 … double emitCount = from->getLogAlpha()+getTransProb(trans)+getEmitProb(trans)+node->getLogBeta(); in getPseudoCounts() local
574 counts.getEmitCount().add(node->getState(), trans->obs, emitCount); in getPseudoCounts()
1095 this->emitCount.save(std::cerr, strIdMap); in print()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/JavaScriptCore/dfg/
H A DDFGJITCompiler.cpp419 void JITCompiler::emitCount(AbstractSamplingCounter& counter, uint32_t increment) in emitCount() function in JSC::DFG::JITCompiler
426 void JITCompiler::emitCount(AbstractSamplingCounter& counter, uint32_t increment) in emitCount() function in JSC::DFG::JITCompiler
H A DDFGJITCompiler.h227 void emitCount(AbstractSamplingCounter&, uint32_t increment = 1);
H A DDFGNonSpeculativeJIT.cpp624 m_jit.emitCount(counter); in compile()
H A DDFGSpeculativeJIT.cpp777 m_jit.emitCount(counter); in compile()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles31/functional/
H A Des31fGeometryShaderTests.cpp845 const int emitCount = m_spec.pattern[packets[packetNdx].primitiveIDIn]; in shadePrimitives() local
847 for (int ndx = 0; ndx < emitCount / 2; ++ndx) in shadePrimitives()
1280 int emitCount = 0; in shadePrimitives() local
1286 …color = tcu::Vec4((emitCount < 10) ? (0.0f) : (1.0f), (emitCount > 10) ? (0.0f) : (1.0f), 1.0f, 1.… in shadePrimitives()
1295 emitCount = m_emitCount.value.i4[primitiveNdx]; in shadePrimitives()
1308 emitCount = 0; in shadePrimitives()
1311 emitCount += (EMIT_COUNT_VERTEX_0 == -1) ? (m_maxEmitCount) : (EMIT_COUNT_VERTEX_0); in shadePrimitives()
1322 for (int ndx = 0; ndx < (int)emitCount / 2; ++ndx) in shadePrimitives()
1324 const float angle = (float(ndx) + 0.5f) / float(emitCount / 2) * 3.142f; in shadePrimitives()
3814 const deInt32 emitCount[4] = { 6, 0, m_maxEmitCount, 10 }; in preRender() local
[all …]
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/LLVM3DBuilder/
H A DBuiltinsFrontend.hpp723 llvm::Value* CreateSetStream(llvm::Value* StreamId, llvm::Value* emitCount);
724 llvm::Value* CreateEndPrimitive(llvm::Value* emitCount);
H A DBuiltinsFrontendDefinitions.hpp3446 llvm::Value* StreamId, llvm::Value* emitCount) in CreateSetStream() argument
3451 return this->CreateCall2(fn, StreamId, emitCount); in CreateSetStream()
3456 llvm::Value* emitCount) in CreateEndPrimitive() argument
3461 return this->CreateCall(fn, emitCount); in CreateEndPrimitive()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/JavaScriptCore/jit/
H A DJIT.cpp476 emitCount(counter); in privateCompile()
H A DJITInlineMethods.h328 ALWAYS_INLINE void JIT::emitCount(AbstractSamplingCounter& counter, uint32_t count) in emitCount() function
H A DJIT.h949 void emitCount(AbstractSamplingCounter&, uint32_t = 1);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/javascriptcore/JavaScriptCore/jit/
H A DJITInlineMethods.h266 ALWAYS_INLINE void JIT::emitCount(AbstractSamplingCounter& counter, uint32_t count) in emitCount() function
H A DJIT.h906 void emitCount(AbstractSamplingCounter&, uint32_t = 1);
/dports/devel/qt5-scripttools/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/jit/
H A DJITInlineMethods.h266 ALWAYS_INLINE void JIT::emitCount(AbstractSamplingCounter& counter, uint32_t count) in emitCount() function
H A DJIT.h906 void emitCount(AbstractSamplingCounter&, uint32_t = 1);
/dports/devel/qt5-script/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/jit/
H A DJITInlineMethods.h266 ALWAYS_INLINE void JIT::emitCount(AbstractSamplingCounter& counter, uint32_t count) in emitCount() function
H A DJIT.h906 void emitCount(AbstractSamplingCounter&, uint32_t = 1);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/JavaScriptCore/
H A DChangeLog6563 (JSC::DFG::JITCompiler::emitCount):
6627 (JSC::JIT::emitCount):

12