Home
last modified time | relevance | path

Searched refs:pCurrent (Results 1 – 7 of 7) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Drdtsc_buckets.h135 if (bt.pCurrent->children.size() < mBuckets.size()) in StartBucket()
137 bt.pCurrent->children.resize(mBuckets.size()); in StartBucket()
139 BUCKET& child = bt.pCurrent->children[id]; in StartBucket()
140 child.pParent = bt.pCurrent; in StartBucket()
145 bt.pCurrent = &child; in StartBucket()
166 if (bt.pCurrent->start == 0) in StopBucket()
168 SWR_ASSERT(bt.pCurrent->id == id, "Mismatched buckets detected"); in StopBucket()
170 bt.pCurrent->elapsed += (tsc - bt.pCurrent->start); in StopBucket()
171 bt.pCurrent->count++; in StopBucket()
174 bt.pCurrent = bt.pCurrent->pParent; in StopBucket()
[all …]
Drdtsc_buckets_shared.h74 BUCKET* pCurrent{nullptr};
89 pCurrent = &root; in BUCKET_THREAD()
Drdtsc_buckets.cpp55 newThread.pCurrent = &newThread.root; in RegisterThread()
/third_party/boost/libs/statechart/test/
DTransitionTest.cpp167 for ( ActionPtr * pCurrent = &actions[ 0 ]; in CompareToExpectedActionSequence() local
168 ( pCurrent != &actions[ arrayLength ] ) && ( *pCurrent != 0 ); in CompareToExpectedActionSequence()
169 ++pCurrent ) in CompareToExpectedActionSequence()
171 ( *pCurrent )( expectedSequence_ ); in CompareToExpectedActionSequence()
/third_party/sqlite/src/
Dshell.c7019 ZipfileEntry *pCurrent; /* Current entry */ member
7204 zipfileEntryFree(pCsr->pCurrent); in zipfileResetCursor()
7205 pCsr->pCurrent = 0; in zipfileResetCursor()
7643 zipfileEntryFree(pCsr->pCurrent); in zipfileNext()
7644 pCsr->pCurrent = 0; in zipfileNext()
7655 pCsr->pCurrent = p; in zipfileNext()
7659 pCsr->pCurrent = pCsr->pCurrent->pNext; in zipfileNext()
7661 if( pCsr->pCurrent==0 ){ in zipfileNext()
7778 ZipfileCDS *pCDS = &pCsr->pCurrent->cds; in zipfileColumn()
7790 sqlite3_result_int64(ctx, pCsr->pCurrent->mUnixTime); in zipfileColumn()
[all …]
Dsqlite3.c8509 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
8512 sqlite3_int64 *pCurrent,
22530 sqlite3_int64 *pCurrent,
22540 if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT;
22544 *pCurrent = wsdStat.nowValue[op];
22553 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){
22557 if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT;
22561 *pCurrent = (int)iCur;
22599 int *pCurrent, /* Write current value here */
22605 if( !sqlite3SafetyCheckOk(db) || pCurrent==0|| pHighwater==0 ){
[all …]
/third_party/sqlite/include/
Dsqlite3.h8196 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
8199 sqlite3_int64 *pCurrent,