Home
last modified time | relevance | path

Searched refs:m_p (Results 1 – 25 of 1680) sorted by relevance

12345678910>>...68

/dports/net/yaz++/yazpp-1.6.1/src/
H A Dyaz-pdu-assoc.cpp83 delete m_p; in ~PDU_Assoc()
99 m_p->cs = cs; in PDU_Assoc()
242 int res = cs_get(m_p->cs, &m_p->input_buf, &m_p->input_len); in socketNotify()
280 } while (m_p->cs && cs_more(m_p->cs)); in socketNotify()
316 for (ch = m_p->pdu_children; ch; ch = ch->m_p->pdu_next) in shutdown()
330 m_p->queue_out = m_p->queue_out->m_next; in shutdown()
349 c = &m_p->pdu_parent->m_p->pdu_children; in destroy()
490 m_p->queue_out = m_p->queue_out->m_next; in listen()
504 m_p->cs = m_p->comstack(addr, &ap); in listen()
551 m_p->cs = m_p->comstack(addr, &ap); in connect()
[all …]
H A Dyaz-z-query.cpp45 m_p->len = q.m_p->len; in Yaz_Z_Query()
46 m_p->buf = (char*) odr_malloc(m_p->odr_encode, m_p->len); in Yaz_Z_Query()
47 memcpy(m_p->buf, q.m_p->buf, m_p->len); in Yaz_Z_Query()
62 m_p->len = q.m_p->len; in operator =()
63 m_p->buf = (char*) odr_malloc(m_p->odr_encode, m_p->len); in operator =()
64 memcpy(m_p->buf, q.m_p->buf, m_p->len); in operator =()
87 m_p->buf = odr_getbuf(m_p->odr_encode, &m_p->len, 0); in set_rpn()
97 m_p->buf = odr_getbuf(m_p->odr_encode, &m_p->len, 0); in set_Z_Query()
114 odr_setbuf(m_p->odr_decode, m_p->buf, m_p->len, 0); in get_Z_Query()
126 odr_setbuf(m_p->odr_decode, m_p->buf, m_p->len, 0); in print()
[all …]
H A Dyaz-z-assoc.cpp82 delete m_p; in ~Z_Assoc()
87 if (m_p->APDU_file && m_p->APDU_file != stderr) in set_APDU_log()
90 m_p->APDU_file = 0; in set_APDU_log()
93 m_p->APDU_fname = 0; in set_APDU_log()
105 odr_setprint(m_p->odr_print, m_p->APDU_file); in set_APDU_log()
112 m_p->APDU_yazlog = v; in set_APDU_yazlog()
118 return m_p->APDU_fname; in get_APDU_log()
305 if (m_p->APDU_file) in encode_GDU()
322 return m_p->hostname; in get_hostname()
348 return m_p->odr_out; in odr_encode()
[all …]
H A Dtimestat.cpp46 m_p = new Rep; in TimeStat()
47 m_p->sec = 0; in TimeStat()
48 m_p->size = sz; in TimeStat()
49 m_p->bucket = new int[m_p->size]; in TimeStat()
50 m_p->ptr = 0; in TimeStat()
56 delete m_p; in ~TimeStat()
73 if (now >= m_p->sec) in add_bytes()
80 if (++m_p->ptr == m_p->size) in add_bytes()
82 m_p->bucket[m_p->ptr] = 0; in add_bytes()
84 m_p->bucket[m_p->ptr] += b; in add_bytes()
[all …]
/dports/irc/kvirc/KVIrc-5.0.0-73-gbdeac0429/src/kvilib/tal/
H A DKviTalWizard.cpp165 m_p->pLayout->addWidget(m_p->pTitleLabel, 0, 0, 1, 3); in KviTalWizard()
170 m_p->pLayout->addWidget(m_p->pStepsLabel, 0, 4, 1, 3); in KviTalWizard()
177 m_p->pLayout->addWidget(m_p->pWidgetStack, 2, 0, 1, 7); in KviTalWizard()
203 m_p->pHelpButton, in KviTalWizard()
217 m_p->pBackButton, in KviTalWizard()
230 m_p->pNextButton, in KviTalWizard()
255 delete m_p; in ~KviTalWizard()
275 m_p->iEnabledPageCount = m_p->reindexPages(); in insertPage()
294 m_p->iEnabledPageCount = m_p->reindexPages(); in setPageEnabled()
442 setCurrentPage(m_p->findPrevEnabledPage(m_p->pCurrentPage->pWidget)); in backButtonClicked()
[all …]
/dports/security/cryptopp/cryptopp-8.6.0/
H A Dsmartptr.h28 T *m_p; in NAMESPACE_BEGIN() local
66 T *m_p; variable
87 return (!this->m_p && !rhs.m_p) || (this->m_p && rhs.m_p && *this->m_p == *rhs.m_p);
94 this->m_p = rhs.m_p ? new T(*rhs.m_p) : NULLPTR;
118 this->m_p = rhs.m_p ? rhs.m_p->Clone() : NULLPTR;
163 : m_p(rhs.m_p) in counted_ptr()
171 if (m_p && --m_p->m_referenceCount == 0) in ~counted_ptr()
177 if (m_p && --m_p->m_referenceCount == 0) in attach()
193 if (m_p && m_p->m_referenceCount > 1) in get()
205 if (m_p != rhs.m_p)
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dsmartptr.h28 T *m_p; in NAMESPACE_BEGIN() local
87 return (!this->m_p && !rhs.m_p) || (this->m_p && rhs.m_p && *this->m_p == *rhs.m_p);
94 this->m_p = rhs.m_p ? new T(*rhs.m_p) : NULLPTR;
118 this->m_p = rhs.m_p ? rhs.m_p->Clone() : NULLPTR;
163 : m_p(rhs.m_p) in counted_ptr()
171 if (m_p && --m_p->m_referenceCount == 0) in ~counted_ptr()
177 if (m_p && --m_p->m_referenceCount == 0) in attach()
193 if (m_p && m_p->m_referenceCount > 1) in get()
205 if (m_p != rhs.m_p)
207 if (m_p && --m_p->m_referenceCount == 0)
[all …]
/dports/emulators/citra/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dsmartptr.h28 T *m_p; in NAMESPACE_BEGIN() local
87 return (!this->m_p && !rhs.m_p) || (this->m_p && rhs.m_p && *this->m_p == *rhs.m_p);
94 this->m_p = rhs.m_p ? new T(*rhs.m_p) : NULLPTR;
118 this->m_p = rhs.m_p ? rhs.m_p->Clone() : NULLPTR;
163 : m_p(rhs.m_p) in counted_ptr()
171 if (m_p && --m_p->m_referenceCount == 0) in ~counted_ptr()
177 if (m_p && --m_p->m_referenceCount == 0) in attach()
193 if (m_p && m_p->m_referenceCount > 1) in get()
205 if (m_p != rhs.m_p)
207 if (m_p && --m_p->m_referenceCount == 0)
[all …]
/dports/sysutils/fusefs-securefs/securefs-0.12.0/external/cryptopp/
H A Dsmartptr.h28 T *m_p; in NAMESPACE_BEGIN() local
87 return (!this->m_p && !rhs.m_p) || (this->m_p && rhs.m_p && *this->m_p == *rhs.m_p);
94 this->m_p = rhs.m_p ? new T(*rhs.m_p) : NULLPTR;
118 this->m_p = rhs.m_p ? rhs.m_p->Clone() : NULLPTR;
163 : m_p(rhs.m_p) in counted_ptr()
171 if (m_p && --m_p->m_referenceCount == 0) in ~counted_ptr()
177 if (m_p && --m_p->m_referenceCount == 0) in attach()
193 if (m_p && m_p->m_referenceCount > 1) in get()
205 if (m_p != rhs.m_p)
207 if (m_p && --m_p->m_referenceCount == 0)
[all …]
/dports/net/yazproxy/yazproxy-1.3.9/src/
H A Dmsg-thread.cpp104 m_p = new Private; in Msg_Thread()
109 pipe(m_p->m_fd); in Msg_Thread()
113 m_p->m_stop_flag = false; in Msg_Thread()
130 m_p->m_stop_flag = true; in ~Msg_Thread()
144 close(m_p->m_fd[0]); in ~Msg_Thread()
145 close(m_p->m_fd[1]); in ~Msg_Thread()
148 delete m_p; in ~Msg_Thread()
173 while (!m_p->m_stop_flag && m_p->m_input.size() == 0) in run()
174 pthread_cond_wait(&m_p->m_cond_input_data, &m_p->m_mutex_input_data); in run()
175 if (m_p->m_stop_flag) in run()
[all …]
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cryptopp/
H A Dsmartptr.h30 T *m_p; in NAMESPACE_BEGIN() local
90 return (!this->m_p && !rhs.m_p) || (this->m_p && rhs.m_p && *this->m_p == *rhs.m_p);
97 this->m_p = rhs.m_p ? new T(*rhs.m_p) : NULL;
122 this->m_p = rhs.m_p ? rhs.m_p->Clone() : NULL;
168 : m_p(rhs.m_p) in counted_ptr()
176 if (m_p && --m_p->m_referenceCount == 0) in ~counted_ptr()
182 if (m_p && --m_p->m_referenceCount == 0) in attach()
198 if (m_p && m_p->m_referenceCount > 1) in get()
210 if (m_p != rhs.m_p)
212 if (m_p && --m_p->m_referenceCount == 0)
[all …]
/dports/irc/kvirc/KVIrc-5.0.0-73-gbdeac0429/src/kvilib/net/
H A DKviHttpRequest.cpp87 if(m_p->pBuffer) in ~KviHttpRequest()
90 delete m_p; in ~KviHttpRequest()
108 if(m_p->pSocket) in resetInternalStatus()
111 if(m_p->pFile) in resetInternalStatus()
211 if(!m_p->pSocket) in closeSocket()
250 if(m_p->pFile && m_p->pBuffer->size() > 0) in slotSocketDisconnected()
251 m_p->pFile->write((const char *)(m_p->pBuffer->data()), m_p->pBuffer->size()); in slotSocketDisconnected()
405 m_p->uPort = m_p->bIsSSL ? 443 : 80; in doConnect()
407 if(m_p->pSocket) in doConnect()
423 if(m_p->bIsSSL) in doConnect()
[all …]
/dports/net/zebra-server/idzebra-2.0.55/bfile/
H A Dcommit.c56 m_p = xmalloc (sizeof(*m_p)); in map_cache_init()
60 m_p->no = 0; in map_cache_init()
61 m_p->map = xmalloc (sizeof(*m_p->map) * m_p->max); in map_cache_init()
62 return m_p; in map_cache_init()
81 qsort (m_p->map, m_p->no, sizeof(*m_p->map), map_cache_cmp_from); in map_cache_flush()
82 assert (m_p->no < 2 || m_p->map[0].from < m_p->map[1].from); in map_cache_flush()
85 if (mf_read(m_p->cf->block_mf, m_p->map[i].from, 0, 0, in map_cache_flush()
94 qsort (m_p->map, m_p->no, sizeof(*m_p->map), map_cache_cmp_to); in map_cache_flush()
95 assert (m_p->no < 2 || m_p->map[0].to < m_p->map[1].to); in map_cache_flush()
98 if (mf_write(m_p->cf->rmf, m_p->map[i].to, 0, 0, in map_cache_flush()
[all …]
/dports/databases/gigabase/gigabase/crypt/rc4/
H A Dsmartptr.h28 m_p = 0; in NAMESPACE_BEGIN()
38 T *m_p; in NAMESPACE_BEGIN() local
57 return (!m_p && !rhs.m_p) || (m_p && rhs.m_p && *mp == *rhs.m_p);
64 m_p = rhs.m_p ? new T(*rhs.m_p) : NULL;
85 m_p = rhs.m_p ? rhs.m_p->Clone() : NULL;
112 T *m_p;
118 if (m_p) in counted_ptr()
123 : m_p(rhs.m_p) in counted_ptr()
131 if (m_p && --m_p->m_referenceCount == 0) in ~counted_ptr()
137 if (m_p && --m_p->m_referenceCount == 0)
[all …]
/dports/emulators/gxemul/gxemul-0.6.3/src/include/
H A Drefcount_ptr.h132 : m_p(p) in m_p() function
155 : m_p(other.m_p) in refcount_ptr()
174 if ((m_p = other.m_p) != NULL)
183 return m_p;
193 return m_p;
198 return m_p;
208 return m_p;
233 std::ptrdiff_t diff = m_p - other.m_p;
247 return m_p == other.m_p;
260 return m_p != other.m_p;
[all …]
/dports/games/xray_re-tools/xray_re-tools-52721d2/sources/xray_re/
H A Dxr_reader.cxx24 m_p = m_data; in find_chunk()
37 m_p += size; in find_chunk()
75 m_p = m_next; in open_chunk_next()
109 m_p += dest_size; in r_raw()
133 m_p = p; in r_s()
147 m_p = p; in r_sz()
152 m_p = p; in r_sz()
166 std::memmove(dest, m_p, p - m_p); in r_sz()
168 m_p = p; in r_sz()
172 std::memmove(dest, m_p, p - m_p); in r_sz()
[all …]
/dports/benchmarks/dkftpbench/dkftpbench-0.45/
H A DPoller_test.cc87 T m_p; member in Poller_test
138 CHECK(0, m_p.init()); in testMondo()
157 CHECK(0, m_p.del(0)); in testMondo()
233 m_p.shutdown(); in testMondo()
240 CHECK(0, m_p.init()); in testRejection()
305 m_p.shutdown(); in testRejection()
311 CHECK(0, m_p.init()); in testWakeUp()
324 CHECK(0, m_p.wakeUp()); in testWakeUp()
332 m_p.shutdown(); in testWakeUp()
339 CHECK(0, m_p.init()); in testCaching()
[all …]
/dports/math/pdal/PDAL-2.3.0/io/
H A DEptReader.cpp181 m_p->info.reset(new EptInfo(m_filename, *m_p->connector)); in initialize()
183 m_p->addons = Addon::load(*m_p->connector, m_args->m_addons); in initialize()
212 m_p->bounds.xform = SrsTransform(m_p->info->srs(), boundsSrs); in initialize()
249 (m_p->info->bounds().maxx - m_p->info->bounds().minx) / m_p->info->span(); in initialize()
435 TileContents tile(overlap, *m_p->info, *m_p->connector, m_p->addons); in load()
484 m_p->pool.reset(new ThreadPool(m_p->pool->numThreads())); in ready()
508 overlaps(*m_p->hierarchy, m_p->connector->getJson(filename), key); in overlaps()
510 m_p->pool->await(); in overlaps()
525 return !m_p->polys.empty() || m_p->bounds.box.valid(); in hasSpatialFilter()
774 m_p->pool->stop(); in read()
[all …]
/dports/emulators/mess/mame-mame0226/3rdparty/catch/include/internal/
H A Dcatch_ptr.hpp27 Ptr( T* p ) : m_p( p ){ in Ptr()
28 if( m_p ) in Ptr()
29 m_p->addRef(); in Ptr()
31 Ptr( Ptr const& other ) : m_p( other.m_p ){ in Ptr()
32 if( m_p ) in Ptr()
33 m_p->addRef(); in Ptr()
36 if( m_p ) in ~Ptr()
40 if( m_p ) in reset()
42 m_p = CATCH_NULL; in reset()
54 void swap( Ptr& other ) { std::swap( m_p, other.m_p ); } in swap()
[all …]
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/3rdparty/catch/include/internal/
H A Dcatch_ptr.hpp27 Ptr( T* p ) : m_p( p ){ in Ptr()
28 if( m_p ) in Ptr()
29 m_p->addRef(); in Ptr()
31 Ptr( Ptr const& other ) : m_p( other.m_p ){ in Ptr()
32 if( m_p ) in Ptr()
33 m_p->addRef(); in Ptr()
36 if( m_p ) in ~Ptr()
40 if( m_p ) in reset()
42 m_p = CATCH_NULL; in reset()
54 void swap( Ptr& other ) { std::swap( m_p, other.m_p ); } in swap()
[all …]
/dports/emulators/mame/mame-mame0226/3rdparty/catch/include/internal/
H A Dcatch_ptr.hpp27 Ptr( T* p ) : m_p( p ){ in Ptr()
28 if( m_p ) in Ptr()
29 m_p->addRef(); in Ptr()
31 Ptr( Ptr const& other ) : m_p( other.m_p ){ in Ptr()
32 if( m_p ) in Ptr()
33 m_p->addRef(); in Ptr()
36 if( m_p ) in ~Ptr()
40 if( m_p ) in reset()
42 m_p = CATCH_NULL; in reset()
54 void swap( Ptr& other ) { std::swap( m_p, other.m_p ); } in swap()
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/Catch/include/internal/
H A Dcatch_ptr.hpp27 Ptr( T* p ) : m_p( p ){ in Ptr()
28 if( m_p ) in Ptr()
29 m_p->addRef(); in Ptr()
31 Ptr( Ptr const& other ) : m_p( other.m_p ){ in Ptr()
32 if( m_p ) in Ptr()
33 m_p->addRef(); in Ptr()
36 if( m_p ) in ~Ptr()
40 if( m_p ) in reset()
42 m_p = CATCH_NULL; in reset()
54 void swap( Ptr& other ) { std::swap( m_p, other.m_p ); } in swap()
[all …]
/dports/biology/abyss/abyss-2.3.1/Common/
H A DConstString.h14 cstring(const char* p) : m_p(p) { } in cstring()
27 return m_p == o.m_p || strcmp(m_p, o.m_p) == 0;
32 return m_p != o.m_p && strcmp(m_p, o.m_p) < 0;
38 return out << o.m_p;
42 const char* m_p;
52 const_string(const_string&& s) : cstring(s.m_p) { s.m_p = NULL; } in const_string()
71 const_cast<const_string&>(s).m_p in const_string()
76 ~const_string() { delete[] m_p; } in ~const_string()
83 assert(m_p != s.m_p);
84 delete[] m_p;
[all …]
/dports/devel/kdevelop/kdevelop-21.12.3/kdevplatform/language/editor/
H A Dpersistentmovingrange.cpp17 m_p->m_range = range; in PersistentMovingRange()
21 m_p->connectTracker(); in PersistentMovingRange()
26 return m_p->m_document; in document()
32 m_p->m_zDepth = depth; in setZDepth()
34 if (m_p->m_movingRange) in setZDepth()
41 if (m_p->m_movingRange) in ~PersistentMovingRange()
43 delete m_p; in ~PersistentMovingRange()
51 return m_p->m_range; in range()
58 if (m_p->m_movingRange) in text()
59 return m_p->m_movingRange->document()->text(m_p->m_movingRange->toRange()); in text()
[all …]
/dports/games/shockolate/systemshock-0.8.2-43-ga9eb1b93/src/Libraries/adlmidi/
H A Dadlmidi_ptr.hpp55 T *m_p; member in AdlMIDI_UPtr
58 : m_p(p) {} in AdlMIDI_UPtr()
71 m_p = p; in reset()
77 std::swap(m_p, other.m_p); in swap()
82 return m_p; in get()
86 return *m_p; in operator *()
90 return m_p; in operator ->()
138 T *m_p; member in AdlMIDI_SPtr
149 : m_p(other.m_p), m_counter(other.m_counter) in AdlMIDI_SPtr()
160 m_p = other.m_p; in operator =()
[all …]

12345678910>>...68