Home
last modified time | relevance | path

Searched refs:isUsed (Results 1 – 25 of 1408) sorted by relevance

12345678910>>...57

/dports/net/mpich2/mpich2-1.5/src/mpe2/src/slog2sdk/src/logformat/clog2TOdrawable/
H A DCommProcThdID.java23 private boolean isUsed; field in CommProcThdID
33 isUsed = false; in CommProcThdID()
38 isUsed = flag; in setUsed()
41 public boolean isUsed() in isUsed() method in CommProcThdID
43 return isUsed; in isUsed()
55 + ", isUsed=" + isUsed in toString()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/angle/src/libANGLE/
H A DHandleRangeAllocator_unittest.cpp31 EXPECT_FALSE(allocator->isUsed(1)); in TEST_F()
35 EXPECT_TRUE(allocator->isUsed(id1)); in TEST_F()
40 EXPECT_TRUE(allocator->isUsed(id2)); in TEST_F()
45 EXPECT_FALSE(allocator->isUsed(id1)); in TEST_F()
49 EXPECT_FALSE(allocator->isUsed(id2)); in TEST_F()
72 EXPECT_FALSE(allocator->isUsed(id1)); in TEST_F()
74 EXPECT_TRUE(allocator->isUsed(id2)); in TEST_F()
84 EXPECT_FALSE(allocator->isUsed(id)); in TEST_F()
86 EXPECT_TRUE(allocator->isUsed(id)); in TEST_F()
264 EXPECT_FALSE(allocator->isUsed(0)); in TEST_F()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/ags/engine/ac/dynobj/
H A Dmanaged_object_pool.cpp43 if (!o.isUsed()) { in Remove()
68 if (!o.isUsed()) { in AddRef()
82 if (!o.isUsed()) { in CheckDispose()
96 if (!o.isUsed()) { in SubRef()
128 if (!o.isUsed()) { in HandleToAddress()
140 if (!o.isUsed()) { in HandleToAddressAndManager()
173 if (!o.isUsed()) { in RunGarbageCollection()
197 if (o.isUsed()) { in AddObject()
221 if (o.isUsed()) { in AddUnserializedObject()
247 if (o.isUsed()) { in WriteToDisk()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/com/sun/crypto/provider/Mac/
H A DDigestCloneabilityTest.java49 if (!SampleProvider.CloneableDigest.isUsed) { in main()
71 static boolean isUsed = false; field in DigestCloneabilityTest.SampleProvider.CloneableDigest
82 isUsed = true; in engineDigest()
87 isUsed = true; in engineReset()
92 isUsed = true; in engineUpdate()
97 isUsed = true; in engineUpdate()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/com/sun/crypto/provider/Mac/
H A DDigestCloneabilityTest.java49 if (!SampleProvider.CloneableDigest.isUsed) { in main()
71 static boolean isUsed = false; field in DigestCloneabilityTest.SampleProvider.CloneableDigest
82 isUsed = true; in engineDigest()
87 isUsed = true; in engineReset()
92 isUsed = true; in engineUpdate()
97 isUsed = true; in engineUpdate()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/com/sun/crypto/provider/Mac/
H A DDigestCloneabilityTest.java49 if (!SampleProvider.CloneableDigest.isUsed) { in main()
71 static boolean isUsed = false; field in DigestCloneabilityTest.SampleProvider.CloneableDigest
82 isUsed = true; in engineDigest()
87 isUsed = true; in engineReset()
92 isUsed = true; in engineUpdate()
97 isUsed = true; in engineUpdate()
/dports/games/openlierox/OpenLieroX/include/
H A DFastVector.h39 if(!isUsed(m_firstUnused)) break; in findNewFirstUnused()
48 if(isUsed(m_lastUsed)) break; in findNewLastUsed()
69 bool isUsed(int index) const { return m_objects[index].isUsed(); } in isUsed() function
82 if(m_objects[i].isUsed()) c++; in size()
98 if(!isUsed(index)) { in refreshObj()
118 if(m_parent.isUsed(m_index)) in next()
139 if( v.m_objects[i].isUsed() )
/dports/editors/libreoffice/libreoffice-7.2.6.2/compilerplugins/clang/store/
H A Dunusedcode.cxx50 bool isUsed = declaration->isUsed(); in VisitFunctionDecl() local
53 if( !isUsed && cxxmethod->isVirtual()) in VisitFunctionDecl()
59 if( (*it)->isUsed()) in VisitFunctionDecl()
61 isUsed = true; in VisitFunctionDecl()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/compilerplugins/clang/store/
H A Dunusedcode.cxx50 bool isUsed = declaration->isUsed(); in VisitFunctionDecl() local
53 if( !isUsed && cxxmethod->isVirtual()) in VisitFunctionDecl()
59 if( (*it)->isUsed()) in VisitFunctionDecl()
61 isUsed = true; in VisitFunctionDecl()
/dports/biology/seqan/seqan-library-2.4.0/include/seqan/graph_algorithms/
H A Dmaximum_weighted_matching.h71 inline TCargo _evaluateConflicts(uint32_t & isUsed, std::array<TCargo, BLOCKSIZE> const & weights, in _evaluateConflicts() argument
83 uint32_t isUsed1 = isUsed; in _evaluateConflicts()
94 isUsed = isUsed1 & ~(1 << conflicts.front().second); // delete bit for 2nd element in _evaluateConflicts()
109 isUsed = isUsed1 & ~(1 << conflicts.front().second); // delete bit for 2nd element in _evaluateConflicts()
113 uint32_t isUsed2 = isUsed; in _evaluateConflicts()
120isUsed = isUsed1 & ~(1 << conflicts.front().second); // take isUsed1 and delete bit (eliminate 2n… in _evaluateConflicts()
125isUsed = isUsed2 & ~(1 << conflicts.front().first); // take isUsed2 and delete bit (eliminate 1st… in _evaluateConflicts()
186 uint32_t isUsed; in maximumWeightedMatchingGreedy() local
204 isUsed = 0xffffffff; in maximumWeightedMatchingGreedy()
221 _evaluateConflicts<BLOCKSIZE, TCargo>(isUsed, weights, conflicts); in maximumWeightedMatchingGreedy()
[all …]
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/include/seqan/graph_algorithms/
H A Dmaximum_weighted_matching.h71 inline TCargo _evaluateConflicts(uint32_t & isUsed, std::array<TCargo, BLOCKSIZE> const & weights, in _evaluateConflicts() argument
83 uint32_t isUsed1 = isUsed; in _evaluateConflicts()
94 isUsed = isUsed1 & ~(1 << conflicts.front().second); // delete bit for 2nd element in _evaluateConflicts()
109 isUsed = isUsed1 & ~(1 << conflicts.front().second); // delete bit for 2nd element in _evaluateConflicts()
113 uint32_t isUsed2 = isUsed; in _evaluateConflicts()
120isUsed = isUsed1 & ~(1 << conflicts.front().second); // take isUsed1 and delete bit (eliminate 2n… in _evaluateConflicts()
125isUsed = isUsed2 & ~(1 << conflicts.front().first); // take isUsed2 and delete bit (eliminate 1st… in _evaluateConflicts()
186 uint32_t isUsed; in maximumWeightedMatchingGreedy() local
204 isUsed = 0xffffffff; in maximumWeightedMatchingGreedy()
221 _evaluateConflicts<BLOCKSIZE, TCargo>(isUsed, weights, conflicts); in maximumWeightedMatchingGreedy()
[all …]
/dports/editors/ted/Ted-2.23/docBuf/
H A DdocListAttributesUsed.c47 IndexSet * isUsed ) in docGetAttributesUsedInTree() argument
54 gau.gauAttributesUsed= isUsed; in docGetAttributesUsedInTree()
69 IndexSet * isUsed ) in docGetAttributesUsedInShape() argument
73 if ( docGetAttributesUsedInTree( bd, &(ds->dsDocumentTree), isUsed ) ) in docGetAttributesUsedInShape()
78 if ( docGetAttributesUsedInShape( bd, ds->dsChildren[child], isUsed ) ) in docGetAttributesUsedInShape()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/util/
H A Dunordered_fast_key_table.h82 if (other.isUsed()) { in Entry()
92 if (isUsed()) {
100 if (other.isUsed()) {
108 if (isUsed()) { in ~Entry()
115 dassert(!isUsed()); in emplaceData()
124 bool isUsed() const { in isUsed() function
133 dassert(isUsed()); in getCurHash()
138 dassert(isUsed()); in unUse()
144 dassert(isUsed()); in getData()
149 dassert(isUsed()); in getData()
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/executors/docker/machine/
H A Ddetails_test.go16 assert.False(t, d.isUsed())
18 assert.True(t, d.isUsed())
20 assert.True(t, d.isUsed())
22 assert.True(t, d.isUsed())
24 assert.True(t, d.isUsed())
/dports/editors/libreoffice/libreoffice-7.2.6.2/basegfx/source/polygon/
H A Db3dpolygon.cxx278 bool isUsed() const in isUsed() function in __anonf9345c750111::BColorArray
419 bool isUsed() const in isUsed() function in __anonf9345c750111::NormalsArray3D
568 bool isUsed() const in isUsed() function in __anonf9345c750111::TextureCoordinate2D
763 if(!mpBColors->isUsed()) in ImplB3DPolygon()
773 if(!mpNormals->isUsed()) in ImplB3DPolygon()
783 if(!mpTextureCoordinates->isUsed()) in ImplB3DPolygon()
976 if(!mpBColors->isUsed()) in setBColor()
1030 if(!mpNormals->isUsed()) in setNormal()
1081 if(!mpTextureCoordinates->isUsed()) in setTextureCoordinate()
1180 if(!mpBColors->isUsed()) in remove()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/basegfx/source/polygon/
H A Db3dpolygon.cxx274 bool isUsed() const in isUsed() function in BColorArray
415 bool isUsed() const in isUsed() function in NormalsArray3D
564 bool isUsed() const in isUsed() function in TextureCoordinate2D
757 if(!mpBColors->isUsed()) in ImplB3DPolygon()
767 if(!mpNormals->isUsed()) in ImplB3DPolygon()
777 if(!mpTextureCoordinates->isUsed()) in ImplB3DPolygon()
970 if(!mpBColors->isUsed()) in setBColor()
1024 if(!mpNormals->isUsed()) in setNormal()
1075 if(!mpTextureCoordinates->isUsed()) in setTextureCoordinate()
1173 if(!mpBColors->isUsed()) in remove()
[all …]
/dports/audio/lmms/lmms-1.2.2/src/core/
H A DInstrumentSoundShaping.cpp168 if( m_envLfoParameters[Cut]->isUsed() ) in processAudioBuffer()
172 if( m_envLfoParameters[Resonance]->isUsed() ) in processAudioBuffer()
180 if( m_envLfoParameters[Cut]->isUsed() && in processAudioBuffer()
181 m_envLfoParameters[Resonance]->isUsed() ) in processAudioBuffer()
202 else if( m_envLfoParameters[Cut]->isUsed() ) in processAudioBuffer()
219 else if( m_envLfoParameters[Resonance]->isUsed() ) in processAudioBuffer()
247 if( m_envLfoParameters[Volume]->isUsed() ) in processAudioBuffer()
287 if( m_envLfoParameters[i]->isUsed() && in envFrames()
314 if( m_envLfoParameters[Volume]->isUsed() ) in releaseFrames()
321 if( m_envLfoParameters[i]->isUsed() ) in releaseFrames()
/dports/math/cvc4/CVC4-1.7/src/expr/
H A Dnode_builder.h226 inline bool isUsed() const { in isUsed() function
462 Assert(!isUsed(), "NodeBuilder is one-shot only; " in begin()
472 Assert(!isUsed(), "NodeBuilder is one-shot only; " in end()
482 Assert(!isUsed(), "NodeBuilder is one-shot only; " in getKind()
489 Assert(!isUsed(), "NodeBuilder is one-shot only; " in getMetaKind()
499 Assert(!isUsed(), "NodeBuilder is one-shot only; " in getNumChildren()
513 Assert(!isUsed(), "NodeBuilder is one-shot only; " in getOperator()
530 Assert(!isUsed(), "NodeBuilder is one-shot only; " in getChild()
917 Assert(!isUsed(), "NodeBuilder is one-shot only; " in constructNV()
1107 Assert(!isUsed(), "NodeBuilder is one-shot only; " in constructNV()
[all …]
/dports/games/openlierox/OpenLieroX/src/server/
H A DCTag.cpp106 …if (cServer->getWorms()[i].isUsed() && cServer->getWorms()[i].getTagIT() && cServer->getWorms()[i]… in Simulate()
121 …if(cServer->getWorms()[i].isUsed() && cServer->getWorms()[i].getTagTime() >= tLXOptions->tGameInfo… in Simulate()
163 if(cServer->getWorms()[i].isUsed()) in TagWorm()
167 if (!worm->isUsed()) { in TagWorm()
195 if(cServer->getWorms()[i].isUsed() && cServer->getWorms()[i].getLives() != WRM_OUT) { in TagRandomWorm()
204 if (cServer->getWorms()[i].isUsed() && cServer->getWorms()[i].getLives() != WRM_OUT) { in TagRandomWorm()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/security/rsa/
H A DTestKeyPairGeneratorInit.java36 boolean isUsed = false; field in TestKeyPairGeneratorInit.MySecureRandom
42 isUsed = true; in nextBytes()
54 if (!rnd.isUsed) { in main()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/sun/security/rsa/
H A DTestKeyPairGeneratorInit.java36 boolean isUsed = false; field in TestKeyPairGeneratorInit.MySecureRandom
42 isUsed = true; in nextBytes()
54 if (!rnd.isUsed) { in main()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/sun/security/rsa/
H A DTestKeyPairGeneratorInit.java36 boolean isUsed = false; field in TestKeyPairGeneratorInit.MySecureRandom
42 isUsed = true; in nextBytes()
54 if (!rnd.isUsed) { in main()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/security/rsa/
H A DTestKeyPairGeneratorInit.java36 boolean isUsed = false; field in TestKeyPairGeneratorInit.MySecureRandom
42 isUsed = true; in nextBytes()
54 if (!rnd.isUsed) { in main()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/sun/security/rsa/
H A DTestKeyPairGeneratorInit.java36 boolean isUsed = false; field in TestKeyPairGeneratorInit.MySecureRandom
42 isUsed = true; in nextBytes()
54 if (!rnd.isUsed) { in main()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/sun/security/rsa/
H A DTestKeyPairGeneratorInit.java36 boolean isUsed = false;
42 isUsed = true;
54 if (!rnd.isUsed) {

12345678910>>...57