Home
last modified time | relevance | path

Searched refs:m_count (Results 1 – 25 of 3327) sorted by relevance

12345678910>>...134

/dports/games/csmash/csmash-0.6.6/
H A DHowto.cpp36 m_count = 0; in Howto()
134 if ( (m_count%350) >= 50 && (m_count%350) < 100 ) in Move()
209 } else if ( m_count > 50 && m_count < 100 ) { in Move()
222 if ( m_count > 0 && m_count < 500 ) { in Move()
224 (500-m_count)/1000.0*sin( m_count*2*3.141592/500 ); in Move()
229 } else if ( m_count > 570 && m_count < 700 ) { in Move()
237 } else if ( m_count > 1000 && m_count < 1500 ) { in Move()
239 (1500-m_count)/1000.0*sin( (m_count-1000)*2*3.141592/500 ); in Move()
244 } else if ( m_count > 1570 && m_count < 1700 ) { in Move()
251 m_count++; in Move()
[all …]
/dports/math/gismo/gismo-21.12.0/external/onurbs/
H A Dopennurbs_array_defs.h113 m_count = src.m_count;
384 return (m_count > 0) ? m_a+(m_count-1) : 0; in Last()
390 return (m_count > 0) ? m_a+(m_count-1) : 0; in Last()
401 src_i + ele_cnt > m_count || dest_i > m_count ) in Move()
818 if (m_count*sizeof(T) <= cap_size || m_count < 8) in NewCapacity()
819 return ((m_count <= 2) ? 4 : 2*m_count); in NewCapacity()
850 if (m_count*sizeof(T) <= cap_size || m_count < 8) in NewCapacity()
851 return ((m_count <= 2) ? 4 : 2*m_count); in NewCapacity()
986 m_count = src.m_count;
1252 return (m_count > 0) ? m_a+(m_count-1) : 0; in Last()
[all …]
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/surface/include/pcl/surface/3rdparty/opennurbs/
H A Dopennurbs_array_defs.h109 m_count = src.m_count;
380 return (m_count > 0) ? m_a+(m_count-1) : 0; in Last()
386 return (m_count > 0) ? m_a+(m_count-1) : 0; in Last()
397 src_i + ele_cnt > m_count || dest_i > m_count ) in Move()
814 if (m_count*sizeof(T) <= cap_size || m_count < 8) in NewCapacity()
815 return ((m_count <= 2) ? 4 : 2*m_count); in NewCapacity()
846 if (m_count*sizeof(T) <= cap_size || m_count < 8) in NewCapacity()
847 return ((m_count <= 2) ? 4 : 2*m_count); in NewCapacity()
982 m_count = src.m_count;
1248 return (m_count > 0) ? m_a+(m_count-1) : 0; in Last()
[all …]
/dports/cad/ldview/ldview-4.4/TRE/
H A DTREVertexArray.cpp12 m_count(0), in TREVertexArray()
23 m_count(other.m_count), in TREVertexArray()
24 m_allocated(other.m_count) in TREVertexArray()
58 m_count += count; in addEmptyValues()
74 if (m_count) in setCapacity()
101 if (index > m_count) in insertVertex()
123 if (index < m_count) in insertVertex()
140 m_count++; in insertVertex()
150 if (index < m_count) in replaceVertex()
163 while (m_count) in removeAll()
[all …]
/dports/math/gambit/gambit-16.0.1/library/include/gambit/
H A Dshared_ptr.h51 : m_ptr(r.m_ptr), m_count(r.m_count) in shared_ptr()
52 { ++*m_count; } in shared_ptr()
55 : m_ptr(r.m_ptr), m_count(r.m_count) in shared_ptr()
56 { ++*m_count; } in shared_ptr()
81 std::swap(m_count, other.m_count); in swap()
91 long *m_count; variable
114 m_ptr(r.m_ptr), m_count(r.m_count) in weak_ptr()
119 m_count = r.m_count;
125 m_count = r.m_count;
137 std::swap(m_count, other.m_count); in swap()
[all …]
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/libdevcore/
H A Dvector_ref.h33 vector_ref(): m_data(nullptr), m_count(0) {} in vector_ref()
44 …) const { if (!m_data || m_count == 0) return _c.empty(); else return _c.size() == m_count && !mem… in contentsEqual()
54 size_t count() const { return m_count; } in count()
56 size_t size() const { return m_count; } in size()
57 bool empty() const { return !m_count; } in empty()
59 … next() const { if (!m_data) return *this; else return vector_ref<_T>(m_data + m_count, m_count); } in next()
63 …& _begin <= m_count && _count <= m_count && _begin + _count <= m_count) return vector_ref<_T>(m_da… in cropped()
72 …::type> _t) const { copyTo(_t); memset(_t.data() + m_count, 0, std::max(_t.size(), m_count) - m_co… in populate()
95 _T* end() { return m_data + m_count; } in end()
102 …or==(vector_ref<_T> const& _cmp) const { return m_data == _cmp.m_data && m_count == _cmp.m_count; }
[all …]
/dports/devel/log4net/log4net-1.2.10/src/Appender/
H A DAppenderCollection.cs275 return m_count++; in Add()
285 m_count = 0; in Clear()
296 newCol.m_count = m_count; in Clone()
365 m_count++; in Insert()
401 m_count--; in RemoveAt()
499 return m_count; in AddRange()
518 return m_count; in AddRange()
538 return m_count; in AddRange()
556 if (m_count > 0) in ToArray()
584 int max = (allowEqualEnd) ? (m_count) : (m_count-1); in ValidateIndex()
[all …]
/dports/devel/log4net/log4net-1.2.10/src/Core/
H A DLevelCollection.cs264 return m_count++; in Add()
274 m_count = 0; in Clear()
285 newCol.m_count = m_count; in Clone()
354 m_count++; in Insert()
390 m_count--; in RemoveAt()
453 value = m_count;
485 m_count += x.Count; in AddRange()
488 return m_count; in AddRange()
507 return m_count; in AddRange()
527 return m_count; in AddRange()
[all …]
/dports/devel/eris/eris-1.3.23/test/
H A DsignalHelpers.h8 m_count(0) in SignalCounter0()
13 ++m_count; in fired()
21 m_count = 0; in reset()
24 int m_count;
34 ++m_count; in fired()
45 ++m_count; in fired()
54 m_count(0) in SignalRecorder1()
59 ++m_count; in fired()
76 int m_count;
85 m_count(0) in SignalRecorderRef1()
[all …]
/dports/lang/ypsilon/ypsilon-0.9.6-update3/src/
H A Dobject_set.cpp97 if (index >= m_count) index -= m_count; in get()
116 … if (m_live >= HASH_BUSY_THRESHOLD(m_count)) rehash(lookup_mutable_hashtable_size(m_count)); in put()
120 if (index >= m_count) index -= m_count; in put()
144 if (index >= m_count) index -= m_count; in remove()
155 int save_count = m_count; in rehash()
157 m_count = ncount; in rehash()
176 if (index >= m_count) index -= m_count; in rehash()
191 for (int i = 0; i < m_count; i++) { in inplace_rehash()
206 if (index >= m_count) index -= m_count; in inplace_rehash()
218 for (int i = 0; i < m_count; i++) { in sweep()
[all …]
/dports/lang/solidity/solidity_0.8.11/libsolutil/
H A Dvector_ref.h33 vector_ref(): m_data(nullptr), m_count(0) {} in vector_ref()
42 explicit operator bool() const { return m_data && m_count; }
51 size_t size() const { return m_count; } in size()
52 bool empty() const { return !m_count; } in empty()
56 …& _begin <= m_count && _count <= m_count && _begin + _count <= m_count) return vector_ref<T>(m_dat… in cropped()
58 …d(size_t _begin) const { if (m_data && _begin <= m_count) return vector_ref<T>(m_data + _begin, m_… in cropped()
61 T* end() { return m_data + m_count; } in end()
63 T const* end() const { return m_data + m_count; } in end()
68 …tor==(vector_ref<T> const& _cmp) const { return m_data == _cmp.m_data && m_count == _cmp.m_count; }
71 void reset() { m_data = nullptr; m_count = 0; } in reset()
[all …]
/dports/devel/log4net/log4net-1.2.10/src/Plugin/
H A DPluginCollection.cs274 return m_count++; in Add()
284 m_count = 0; in Clear()
295 newCol.m_count = m_count; in Clone()
364 m_count++; in Insert()
399 m_count--; in RemoveAt()
465 value = m_count;
497 m_count += x.Count; in AddRange()
500 return m_count; in AddRange()
519 return m_count; in AddRange()
539 return m_count; in AddRange()
[all …]
/dports/databases/percona56-client/percona-server-5.6.51-91.0/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp54 Uint32 m_count; member in KeyTable2C
65 m_count ++; in seize()
73 m_count ++; in add()
81 m_count --; in remove()
87 assert(m_count); in remove()
88 m_count --; in remove()
94 m_count --; in remove()
99 m_count = 0; in removeAll()
107 m_count --; in release()
114 m_count --; in release()
[all …]
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp54 Uint32 m_count; member in KeyTable2C
65 m_count ++; in seize()
73 m_count ++; in add()
81 m_count --; in remove()
87 assert(m_count); in remove()
88 m_count --; in remove()
94 m_count --; in remove()
99 m_count = 0; in removeAll()
107 m_count --; in release()
114 m_count --; in release()
[all …]
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp56 Uint32 m_count; member in KeyTable2C
67 m_count ++; in seize()
75 m_count ++; in add()
83 m_count --; in remove()
89 assert(m_count); in remove()
90 m_count --; in remove()
96 m_count --; in remove()
101 m_count = 0; in removeAll()
109 m_count --; in release()
116 m_count --; in release()
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp56 Uint32 m_count; member in KeyTable2C
67 m_count ++; in seize()
75 m_count ++; in add()
83 m_count --; in remove()
89 assert(m_count); in remove()
90 m_count --; in remove()
96 m_count --; in remove()
101 m_count = 0; in removeAll()
109 m_count --; in release()
116 m_count --; in release()
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp56 Uint32 m_count; member in KeyTable2C
67 m_count ++; in seize()
75 m_count ++; in add()
83 m_count --; in remove()
89 assert(m_count); in remove()
90 m_count --; in remove()
96 m_count --; in remove()
101 m_count = 0; in removeAll()
109 m_count --; in release()
116 m_count --; in release()
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp56 Uint32 m_count; member in KeyTable2C
67 m_count ++; in seize()
75 m_count ++; in add()
83 m_count --; in remove()
89 assert(m_count); in remove()
90 m_count --; in remove()
96 m_count --; in remove()
101 m_count = 0; in removeAll()
109 m_count --; in release()
116 m_count --; in release()
[all …]
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp56 Uint32 m_count; member in KeyTable2C
67 m_count ++; in seize()
75 m_count ++; in add()
83 m_count --; in remove()
89 assert(m_count); in remove()
90 m_count --; in remove()
96 m_count --; in remove()
101 m_count = 0; in removeAll()
109 m_count --; in release()
116 m_count --; in release()
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp56 Uint32 m_count; member in KeyTable2C
67 m_count ++; in seize()
75 m_count ++; in add()
83 m_count --; in remove()
89 assert(m_count); in remove()
90 m_count --; in remove()
96 m_count --; in remove()
101 m_count = 0; in removeAll()
109 m_count --; in release()
116 m_count --; in release()
[all …]
/dports/databases/percona56-server/percona-server-5.6.51-91.0/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp54 Uint32 m_count; member in KeyTable2C
65 m_count ++; in seize()
73 m_count ++; in add()
81 m_count --; in remove()
87 assert(m_count); in remove()
88 m_count --; in remove()
94 m_count --; in remove()
99 m_count = 0; in removeAll()
107 m_count --; in release()
114 m_count --; in release()
[all …]
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp54 Uint32 m_count; member in KeyTable2C
65 m_count ++; in seize()
73 m_count ++; in add()
81 m_count --; in remove()
87 assert(m_count); in remove()
88 m_count --; in remove()
94 m_count --; in remove()
99 m_count = 0; in removeAll()
107 m_count --; in release()
114 m_count --; in release()
[all …]
/dports/databases/mysql56-client/mysql-5.6.51/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp54 Uint32 m_count; member in KeyTable2C
65 m_count ++; in seize()
73 m_count ++; in add()
81 m_count --; in remove()
87 assert(m_count); in remove()
88 m_count --; in remove()
94 m_count --; in remove()
99 m_count = 0; in removeAll()
107 m_count --; in release()
114 m_count --; in release()
[all …]
/dports/databases/mysql55-client/mysql-5.5.62/storage/ndb/src/kernel/vm/
H A DKeyTable2.hpp45 Uint32 m_count; member in KeyTable2C
56 m_count ++; in seize()
64 m_count ++; in add()
72 m_count --; in remove()
78 assert(m_count); in remove()
79 m_count --; in remove()
85 m_count --; in remove()
90 m_count = 0; in removeAll()
98 m_count --; in release()
105 m_count --; in release()
[all …]
/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/lib/
H A DCountdownInputStream.java57 private long m_count;
66 if (m_count <= 0) {
73 m_count--;
85 if (m_count <= 0) {
91 if (len > m_count) {
98 m_count -= r;
111 if (m_count <= 0) {
115 if (len > m_count) {
122 m_count -= r;
143 return m_count;
[all …]

12345678910>>...134