Searched refs:rRun (Results 1 – 3 of 3) sorted by relevance
/external/skia/src/gpu/text/ |
D | GrAtlasTextBlob.cpp | 499 const Run& rRun = r.fRuns[i]; in AssertEqual() local 502 SkASSERT_RELEASE(rRun.fTypeface.get()); in AssertEqual() 503 SkASSERT_RELEASE(SkTypeface::Equal(lRun.fTypeface, rRun.fTypeface)); in AssertEqual() 505 SkASSERT_RELEASE(!rRun.fTypeface.get()); in AssertEqual() 510 SkASSERT_RELEASE(rRun.fDescriptor.getDesc()); in AssertEqual() 511 SkASSERT_RELEASE(lRun.fDescriptor.getDesc()->equals(*rRun.fDescriptor.getDesc())); in AssertEqual() 515 SkASSERT_RELEASE(rRun.fOverrideDescriptor.get() && rRun.fOverrideDescriptor->getDesc()); in AssertEqual() 517 *rRun.fOverrideDescriptor->getDesc())); in AssertEqual() 519 SkASSERT_RELEASE(!rRun.fOverrideDescriptor.get()); in AssertEqual() 524 SkASSERT_RELEASE(lRun.fInitialized == rRun.fInitialized); in AssertEqual() [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 118140 LogEst rRun; /* Cost of running each loop */ 118172 LogEst rRun; /* Cost of running this subquery */ 121510 LogEst rRun, /* Run-cost of the new entry */ 121516 if( rRun<=p->rRun && (prereq & p->prereq)==prereq ){ 121519 if( p->rRun<=rRun && (p->prereq & prereq)==p->prereq ){ 121529 if( p->rRun>pSet->a[i].rRun ) p = pSet->a + i; 121531 if( p->rRun<=rRun ) return 0; 121535 p->rRun = rRun; 123073 sqlite3DebugPrintf(" cost %d,%d,%d\n", p->rSetup, p->rRun, p->nOut); 123211 if( pX->rRun >= pY->rRun ){ [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 118122 LogEst rRun; /* Cost of running each loop */ 118154 LogEst rRun; /* Cost of running this subquery */ 121492 LogEst rRun, /* Run-cost of the new entry */ 121498 if( rRun<=p->rRun && (prereq & p->prereq)==prereq ){ 121501 if( p->rRun<=rRun && (p->prereq & prereq)==p->prereq ){ 121511 if( p->rRun>pSet->a[i].rRun ) p = pSet->a + i; 121513 if( p->rRun<=rRun ) return 0; 121517 p->rRun = rRun; 123055 sqlite3DebugPrintf(" cost %d,%d,%d\n", p->rSetup, p->rRun, p->nOut); 123193 if( pX->rRun >= pY->rRun ){ [all …]
|