Searched refs:pCurrent (Results 1 – 7 of 7) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/common/ |
D | rdtsc_buckets.h | 135 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 …]
|
D | rdtsc_buckets_shared.h | 74 BUCKET* pCurrent{nullptr}; 89 pCurrent = &root; in BUCKET_THREAD()
|
D | rdtsc_buckets.cpp | 55 newThread.pCurrent = &newThread.root; in RegisterThread()
|
/third_party/boost/libs/statechart/test/ |
D | TransitionTest.cpp | 167 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/ |
D | shell.c | 7019 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 …]
|
D | sqlite3.c | 8509 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/ |
D | sqlite3.h | 8196 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag); 8199 sqlite3_int64 *pCurrent,
|