Home
last modified time | relevance | path

Searched refs:nRef (Results 1 – 25 of 720) sorted by relevance

12345678910>>...29

/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Dmutex_unix.c191 assert( p->nRef==0 ); in pthreadMutexFree()
225 p->nRef++; in pthreadMutexEnter()
228 assert( p->nRef==0 ); in pthreadMutexEnter()
230 p->nRef = 1; in pthreadMutexEnter()
240 p->nRef++; in pthreadMutexEnter()
268 p->nRef++; in pthreadMutexTry()
271 assert( p->nRef==0 ); in pthreadMutexTry()
273 p->nRef = 1; in pthreadMutexTry()
285 p->nRef++; in pthreadMutexTry()
310 p->nRef--; in pthreadMutexLeave()
[all …]
H A Dmutex_w32.c29 volatile int nRef; /* Number of enterances */ member
81 return p->nRef!=0 && p->owner==GetCurrentThreadId(); in winMutexHeld()
84 return p->nRef==0 || p->owner!=tid; in winMutexNotheld2()
223 assert( p->nRef==0 && p->owner==0 ); in winMutexFree()
247 assert( p->nRef>0 || p->owner==0 ); in winMutexEnter()
249 p->nRef++; in winMutexEnter()
275 p->nRef++; in winMutexTry()
298 assert( p->nRef>0 ); in winMutexLeave()
300 p->nRef--; in winMutexLeave()
301 if( p->nRef==0 ) p->owner = 0; in winMutexLeave()
[all …]
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dmutex_unix.c225 assert( p->nRef==0 ); in pthreadMutexFree()
268 p->nRef++; in pthreadMutexEnter()
271 assert( p->nRef==0 ); in pthreadMutexEnter()
273 p->nRef = 1; in pthreadMutexEnter()
283 p->nRef++; in pthreadMutexEnter()
311 p->nRef++; in pthreadMutexTry()
314 assert( p->nRef==0 ); in pthreadMutexTry()
316 p->nRef = 1; in pthreadMutexTry()
328 p->nRef++; in pthreadMutexTry()
353 p->nRef--; in pthreadMutexLeave()
[all …]
H A Dmutex_w32.c41 volatile int nRef; /* Number of enterances */ member
71 return p->nRef==0 || p->owner!=tid; in winMutexNotheld2()
262 assert( p->nRef==0 && p->owner==0 ); in winMutexFree()
297 assert( p->nRef>0 || p->owner==0 ); in winMutexEnter()
299 p->nRef++; in winMutexEnter()
302 tid, p->id, p, p->trace, p->nRef)); in winMutexEnter()
335 p->nRef++; in winMutexTry()
363 assert( p->nRef>0 ); in winMutexLeave()
365 p->nRef--; in winMutexLeave()
366 if( p->nRef==0 ) p->owner = 0; in winMutexLeave()
[all …]
H A Dpcache.c423 pPg && (pPg->nRef || (pPg->flags&PGHDR_NEED_SYNC)); in sqlite3PcacheFetchStress()
500 pPgHdr->nRef++; in sqlite3PcacheFetchFinish()
510 assert( p->nRef>0 ); in sqlite3PcacheRelease()
512 if( (--p->nRef)==0 ){ in sqlite3PcacheRelease()
525 assert(p->nRef>0); in sqlite3PcacheRef()
527 p->nRef++; in sqlite3PcacheRef()
537 assert( p->nRef==1 ); in sqlite3PcacheDrop()
551 assert( p->nRef>0 ); in sqlite3PcacheMakeDirty()
578 if( p->nRef==0 ){ in sqlite3PcacheMakeClean()
622 assert( p->nRef>0 ); in sqlite3PcacheMove()
[all …]
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dmutex_unix.c218 assert( p->nRef==0 ); in pthreadMutexFree()
261 p->nRef++; in pthreadMutexEnter()
264 assert( p->nRef==0 ); in pthreadMutexEnter()
266 p->nRef = 1; in pthreadMutexEnter()
276 p->nRef++; in pthreadMutexEnter()
304 p->nRef++; in pthreadMutexTry()
307 assert( p->nRef==0 ); in pthreadMutexTry()
309 p->nRef = 1; in pthreadMutexTry()
321 p->nRef++; in pthreadMutexTry()
346 p->nRef--; in pthreadMutexLeave()
[all …]
H A Dmutex_w32.c41 volatile int nRef; /* Number of enterances */ member
71 return p->nRef==0 || p->owner!=tid; in winMutexNotheld2()
262 assert( p->nRef==0 && p->owner==0 ); in winMutexFree()
297 assert( p->nRef>0 || p->owner==0 ); in winMutexEnter()
299 p->nRef++; in winMutexEnter()
302 tid, p->id, p, p->trace, p->nRef)); in winMutexEnter()
335 p->nRef++; in winMutexTry()
363 assert( p->nRef>0 ); in winMutexLeave()
365 p->nRef--; in winMutexLeave()
366 if( p->nRef==0 ) p->owner = 0; in winMutexLeave()
[all …]
H A Dpcache.c424 pPg && (pPg->nRef || (pPg->flags&PGHDR_NEED_SYNC)); in sqlite3PcacheFetchStress()
501 pPgHdr->nRef++; in sqlite3PcacheFetchFinish()
511 assert( p->nRef>0 ); in sqlite3PcacheRelease()
513 if( (--p->nRef)==0 ){ in sqlite3PcacheRelease()
530 assert(p->nRef>0); in sqlite3PcacheRef()
532 p->nRef++; in sqlite3PcacheRef()
542 assert( p->nRef==1 ); in sqlite3PcacheDrop()
556 assert( p->nRef>0 ); in sqlite3PcacheMakeDirty()
583 if( p->nRef==0 ){ in sqlite3PcacheMakeClean()
628 assert( p->nRef>0 ); in sqlite3PcacheMove()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dmutex_unix.c225 assert( p->nRef==0 ); in pthreadMutexFree()
268 p->nRef++; in pthreadMutexEnter()
271 assert( p->nRef==0 ); in pthreadMutexEnter()
273 p->nRef = 1; in pthreadMutexEnter()
283 p->nRef++; in pthreadMutexEnter()
311 p->nRef++; in pthreadMutexTry()
314 assert( p->nRef==0 ); in pthreadMutexTry()
316 p->nRef = 1; in pthreadMutexTry()
328 p->nRef++; in pthreadMutexTry()
353 p->nRef--; in pthreadMutexLeave()
[all …]
H A Dmutex_w32.c41 volatile int nRef; /* Number of enterances */ member
71 return p->nRef==0 || p->owner!=tid; in winMutexNotheld2()
262 assert( p->nRef==0 && p->owner==0 ); in winMutexFree()
297 assert( p->nRef>0 || p->owner==0 ); in winMutexEnter()
299 p->nRef++; in winMutexEnter()
302 tid, p->id, p, p->trace, p->nRef)); in winMutexEnter()
335 p->nRef++; in winMutexTry()
363 assert( p->nRef>0 ); in winMutexLeave()
365 p->nRef--; in winMutexLeave()
366 if( p->nRef==0 ) p->owner = 0; in winMutexLeave()
[all …]
H A Dpcache.c423 pPg && (pPg->nRef || (pPg->flags&PGHDR_NEED_SYNC)); in sqlite3PcacheFetchStress()
500 pPgHdr->nRef++; in sqlite3PcacheFetchFinish()
510 assert( p->nRef>0 ); in sqlite3PcacheRelease()
512 if( (--p->nRef)==0 ){ in sqlite3PcacheRelease()
525 assert(p->nRef>0); in sqlite3PcacheRef()
527 p->nRef++; in sqlite3PcacheRef()
537 assert( p->nRef==1 ); in sqlite3PcacheDrop()
551 assert( p->nRef>0 ); in sqlite3PcacheMakeDirty()
578 if( p->nRef==0 ){ in sqlite3PcacheMakeClean()
622 assert( p->nRef>0 ); in sqlite3PcacheMove()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dmutex_unix.c225 assert( p->nRef==0 ); in pthreadMutexFree()
268 p->nRef++; in pthreadMutexEnter()
271 assert( p->nRef==0 ); in pthreadMutexEnter()
273 p->nRef = 1; in pthreadMutexEnter()
283 p->nRef++; in pthreadMutexEnter()
311 p->nRef++; in pthreadMutexTry()
314 assert( p->nRef==0 ); in pthreadMutexTry()
316 p->nRef = 1; in pthreadMutexTry()
328 p->nRef++; in pthreadMutexTry()
353 p->nRef--; in pthreadMutexLeave()
[all …]
H A Dmutex_w32.c41 volatile int nRef; /* Number of enterances */ member
71 return p->nRef==0 || p->owner!=tid; in winMutexNotheld2()
262 assert( p->nRef==0 && p->owner==0 ); in winMutexFree()
297 assert( p->nRef>0 || p->owner==0 ); in winMutexEnter()
299 p->nRef++; in winMutexEnter()
302 tid, p->id, p, p->trace, p->nRef)); in winMutexEnter()
335 p->nRef++; in winMutexTry()
363 assert( p->nRef>0 ); in winMutexLeave()
365 p->nRef--; in winMutexLeave()
366 if( p->nRef==0 ) p->owner = 0; in winMutexLeave()
[all …]
H A Dpcache.c423 pPg && (pPg->nRef || (pPg->flags&PGHDR_NEED_SYNC)); in sqlite3PcacheFetchStress()
500 pPgHdr->nRef++; in sqlite3PcacheFetchFinish()
510 assert( p->nRef>0 ); in sqlite3PcacheRelease()
512 if( (--p->nRef)==0 ){ in sqlite3PcacheRelease()
525 assert(p->nRef>0); in sqlite3PcacheRef()
527 p->nRef++; in sqlite3PcacheRef()
537 assert( p->nRef==1 ); in sqlite3PcacheDrop()
551 assert( p->nRef>0 ); in sqlite3PcacheMakeDirty()
578 if( p->nRef==0 ){ in sqlite3PcacheMakeClean()
622 assert( p->nRef>0 ); in sqlite3PcacheMove()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/filter/qpro/
H A Dqproform.cxx176 #define SAFEDEC_OR_RET(nRef, amt, ret) \ argument
178 if (nRef < amt)\
180 nRef-=amt; \
211 sal_uInt16 nRef = 0; in Convert() local
212 maIn.ReadUInt16( nRef ); in Convert()
214 if( nRef < nBufSize ) in Convert()
216 for( sal_uInt16 i=0; i < nRef; i++) in Convert()
226 SAFEDEC_OR_RET(nRef, 2, ConvErr::Count); in Convert()
235 SAFEDEC_OR_RET(nRef, 8, ConvErr::Count); in Convert()
246 SAFEDEC_OR_RET(nRef, 5, ConvErr::Count); in Convert()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/filter/qpro/
H A Dqproform.cxx175 #define SAFEDEC_OR_RET(nRef, amt, ret) \ argument
177 if (nRef < amt)\
179 nRef-=amt; \
210 sal_uInt16 nRef = 0; in Convert() local
211 maIn.ReadUInt16( nRef ); in Convert()
213 if( nRef < nBufSize ) in Convert()
215 for( sal_uInt16 i=0; i < nRef; i++) in Convert()
225 SAFEDEC_OR_RET(nRef, 2, ConvErr::Count); in Convert()
234 SAFEDEC_OR_RET(nRef, 8, ConvErr::Count); in Convert()
245 SAFEDEC_OR_RET(nRef, 5, ConvErr::Count); in Convert()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/testtools/source/performance/
H A Dpseudo.cxx36 oslInterlockedCount nRef; member
48 oslInterlockedCount nRef; member
95 if (1 == osl_atomic_increment( &static_cast< pseudo_unoInterfaceProxy * >( pUnoI )->nRef )) in pseudo_unoInterfaceProxy_acquire()
111 if (! osl_atomic_decrement( & static_cast< pseudo_unoInterfaceProxy * >( pUnoI )->nRef )) in pseudo_unoInterfaceProxy_release()
122 : nRef( 1 ) in pseudo_unoInterfaceProxy()
191 if (1 == osl_atomic_increment( & static_cast< pseudo_Mapping * >( pMapping )->nRef )) in pseudo_Mapping_acquire()
204 if (! osl_atomic_decrement( & static_cast< pseudo_Mapping * >( pMapping )->nRef )) in pseudo_Mapping_release()
212 : nRef( 1 ) in pseudo_Mapping()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/testtools/source/performance/
H A Dpseudo.cxx36 oslInterlockedCount nRef; member
48 oslInterlockedCount nRef; member
95 if (1 == osl_atomic_increment( &static_cast< pseudo_unoInterfaceProxy * >( pUnoI )->nRef )) in pseudo_unoInterfaceProxy_acquire()
111 if (! osl_atomic_decrement( & static_cast< pseudo_unoInterfaceProxy * >( pUnoI )->nRef )) in pseudo_unoInterfaceProxy_release()
122 : nRef( 1 ) in pseudo_unoInterfaceProxy()
191 if (1 == osl_atomic_increment( & static_cast< pseudo_Mapping * >( pMapping )->nRef )) in pseudo_Mapping_acquire()
204 if (! osl_atomic_decrement( & static_cast< pseudo_Mapping * >( pMapping )->nRef )) in pseudo_Mapping_release()
212 : nRef( 1 ) in pseudo_Mapping()
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/tools/walkers/annotator/
H A DAlleleFractionGenotypeAnnotationUnitTest.java81 final int nRef=7; in testUsingReadsDataProvider() local
84 final List<GATKRead> sample1Reads = new ArrayList<>(Collections.nCopies(nRef, refRead)); in testUsingReadsDataProvider()
87 final List<GATKRead> sample2Reads = Collections.nCopies(nRef + nAlt, refRead); in testUsingReadsDataProvider()
98 for (int i=0; i<nRef+nAlt; i++) { in testUsingReadsDataProvider()
99 matrix1.set(0, i,i<nRef? MATCH_LIKELIHOOD : MISMATCH_LIKELIHOOD); in testUsingReadsDataProvider()
100 matrix1.set(1, i, i<nRef? MISMATCH_LIKELIHOOD : MATCH_LIKELIHOOD); in testUsingReadsDataProvider()
107 {vc, gAC, alleleLikelihoods, new double[]{(double)nAlt/(double)(nAlt + nRef)}}, in testUsingReadsDataProvider()
/dports/multimedia/intel-media-sdk/MediaSDK-intel-mediasdk-22.1.0/_studio/mfx_lib/encode_hw/hevc/agnostic/g12/
H A Dhevcehw_g12_caps.cpp42 const mfxU16 nRef[2][3][7] = in Query1NoCaps() local
65 … std::min<mfxU16>(nRef[bVDEnc][0][tu], std::min<mfxU16>(dpar.caps.MaxNum_Reference0, numRefFrame)) in Query1NoCaps()
66 …, std::min<mfxU16>(nRef[bVDEnc][1][tu], std::min<mfxU16>(dpar.caps.MaxNum_Reference0, numRefFrame)) in Query1NoCaps()
67 …, std::min<mfxU16>(nRef[bVDEnc][2][tu], std::min<mfxU16>(dpar.caps.MaxNum_Reference1, numRefFrame)… in Query1NoCaps()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/inc/
H A Dhtmltbl.hxx74 void SetWidthSet( sal_uInt8 nRef ) { m_nWidthSet = nRef; } in SetWidthSet() argument
75 bool IsWidthSet( sal_uInt8 nRef ) const { return nRef==m_nWidthSet; } in IsWidthSet()
77 void SetPass1Done( sal_uInt8 nRef ) { m_nPass1Done = nRef; } in SetPass1Done() argument
78 bool IsPass1Done( sal_uInt8 nRef ) const { return nRef==m_nPass1Done; } in IsPass1Done()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/inc/
H A Dhtmltbl.hxx74 void SetWidthSet( sal_uInt8 nRef ) { nWidthSet = nRef; } in SetWidthSet() argument
75 bool IsWidthSet( sal_uInt8 nRef ) const { return nRef==nWidthSet; } in IsWidthSet()
77 void SetPass1Done( sal_uInt8 nRef ) { nPass1Done = nRef; } in SetPass1Done() argument
78 bool IsPass1Done( sal_uInt8 nRef ) const { return nRef==nPass1Done; } in IsPass1Done()
/dports/databases/sqlite2/sqlite-2.8.17/src/
H A Dpager.c459 pPager->nRef = 0; in pager_reset()
976 pPager->nRef = 0; in sqlitepager_open()
1120 #define page_ref(P) ((P)->nRef==0?_page_ref(P):(void)(P)->nRef++)
1122 if( pPg->nRef==0 ){ in _page_ref()
1141 pPg->nRef++; in _page_ref()
1499 pPg->nRef = 1; in sqlitepager_get()
1501 pPager->nRef++; in sqlitepager_get()
1590 pPg->nRef--; in sqlitepager_unref()
1596 if( pPg->nRef==0 ){ in sqlitepager_unref()
1617 pPager->nRef--; in sqlitepager_unref()
[all …]
/dports/databases/p5-DBD-SQLite2/DBD-SQLite2-0.38/
H A Dpager.c459 pPager->nRef = 0; in pager_reset()
976 pPager->nRef = 0; in sqlitepager_open()
1120 #define page_ref(P) ((P)->nRef==0?_page_ref(P):(void)(P)->nRef++)
1122 if( pPg->nRef==0 ){ in _page_ref()
1141 pPg->nRef++; in _page_ref()
1499 pPg->nRef = 1; in sqlitepager_get()
1501 pPager->nRef++; in sqlitepager_get()
1590 pPg->nRef--; in sqlitepager_unref()
1596 if( pPg->nRef==0 ){ in sqlitepager_unref()
1617 pPager->nRef--; in sqlitepager_unref()
[all …]
/dports/devel/upp/upp/bazaar/plugin/gdal/ogr/ogrsf_frmts/sxf/
H A Dogrsxflayer.cpp625 if (CHECK_BIT(stRecordHeader.nRef[2], 3)) in GetNextRawFeature()
627 if (CHECK_BIT(stRecordHeader.nRef[2], 4)) in GetNextRawFeature()
645 if (CHECK_BIT(stRecordHeader.nRef[2], 5)) in GetNextRawFeature()
651 code = stRecordHeader.nRef[0] & 15;//get first 4 bits in GetNextRawFeature()
698 bool bHasRefVector = CHECK_BIT(stRecordHeader.nRef[1], 3); in GetNextRawFeature()
718 b3D = CHECK_BIT(stRecordHeader.nRef[2], 1); in GetNextRawFeature()
719 bFloatType = CHECK_BIT(stRecordHeader.nRef[2], 2); in GetNextRawFeature()
720 bBigType = CHECK_BIT(stRecordHeader.nRef[1], 2); in GetNextRawFeature()
725 b3D = CHECK_BIT(stRecordHeader.nRef[2], 1); in GetNextRawFeature()
726 bFloatType = CHECK_BIT(stRecordHeader.nRef[2], 2); in GetNextRawFeature()
[all …]

12345678910>>...29