Home
last modified time | relevance | path

Searched refs:pIdx (Results 1 – 4 of 4) sorted by relevance

/third_party/openh264/codec/encoder/core/src/
Dnal_encap.cpp67 int32_t* pIdx = &pWelsEncoderOuput->iNalIndex; in WelsUnloadNal() local
68 SWelsNalRaw* pRawNal = &pWelsEncoderOuput->sNalList[ *pIdx ]; in WelsUnloadNal()
74 ++ (*pIdx); in WelsUnloadNal()
100 int32_t* pIdx = &pSliceBs->iNalIndex; in WelsUnloadNalForSlice() local
101 SWelsNalRaw* pRawNal = &pSliceBs->sNalList[ *pIdx ]; in WelsUnloadNalForSlice()
107 ++ (*pIdx); in WelsUnloadNalForSlice()
/third_party/sqlite/src/
Dsqlite3.c19650 SQLITE_PRIVATE int sqlite3ExprCoveredByIndex(Expr*, int iCur, Index *pIdx);
66034 Index *pIdx = (Index *)sqliteHashData(p);
66035 if( pIdx->tnum==(int)iRoot ){
66042 iTab = pIdx->pTable->tnum;
67457 static int allocateSpace(MemPage *pPage, int nByte, int *pIdx){
67502 *pIdx = g2 = (int)(pSpace-data);
67536 *pIdx = top;
78842 Index *pIdx;
78864 Index *pIdx = p->pIdx; /* Index being probed */
78867 int nCol = pIdx->nColumn; /* Number of index columns including rowid */
[all …]
Dshell.c11478 static int dbdataBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdx){ in dbdataBestIndex() argument
11485 for(i=0; i<pIdx->nConstraint; i++){ in dbdataBestIndex()
11486 struct sqlite3_index_constraint *p = &pIdx->aConstraint[i]; in dbdataBestIndex()
11499 pIdx->aConstraintUsage[iSchema].argvIndex = 1; in dbdataBestIndex()
11500 pIdx->aConstraintUsage[iSchema].omit = 1; in dbdataBestIndex()
11503 pIdx->aConstraintUsage[iPgno].argvIndex = 1 + (iSchema>=0); in dbdataBestIndex()
11504 pIdx->aConstraintUsage[iPgno].omit = 1; in dbdataBestIndex()
11505 pIdx->estimatedCost = 100; in dbdataBestIndex()
11506 pIdx->estimatedRows = 50; in dbdataBestIndex()
11508 if( pTab->bPtr==0 && pIdx->nOrderBy && pIdx->aOrderBy[0].desc==0 ){ in dbdataBestIndex()
[all …]
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch95935 Index *pIdx = (Index *)sqliteHashData(p);
95936 - if( pIdx->tnum==(int)iRoot ){
95937 + if( pIdx->tnum==iRoot ){
96151 @@ -67200,6 +68491,7 @@ static int allocateSpace(MemPage *pPage, int nByte, int *pIdx){
96159 @@ -67218,7 +68510,8 @@ static int allocateSpace(MemPage *pPage, int nByte, int *pIdx){
97450 @@ -80532,8 +82096,7 @@ SQLITE_PRIVATE void sqlite3VdbeSetP4KeyInfo(Parse *pParse, Index *pIdx){
101121 if( pIdx->aiColumn[j]!=pRhs->iColumn ) continue;
101122 assert( pIdx->azColl[j] );
102582 sqlite3VdbeAddOp3(v, OP_OpenRead, iCur, pIdx->tnum, iDb);
102583 sqlite3VdbeSetP4KeyInfo(pParse, pIdx);
[all …]