• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching defs:pB

29881 static PgHdr *pcacheMergeDirtyList(PgHdr *pA, PgHdr *pB){
29884 while( pA && pB ){
29885 if( pA->pgno<pB->pgno ){
29890 pTail->pDirty = pB;
29891 pTail = pB;
29892 pB = pB->pDirty;
29897 }else if( pB ){
29898 pTail->pDirty = pB;
31004 struct RowSetEntry *pB /* Second sorted list to be merged */
31010 while( pA && pB ){
31012 assert( pB->pRight==0 || pB->v<=pB->pRight->v );
31013 if( pA->v<pB->v ){
31017 }else if( pB->v<pA->v ){
31018 pTail->pRight = pB;
31019 pB = pB->pRight;
31029 assert( pB==0 || pB->pRight==0 || pB->v<=pB->pRight->v );
31030 pTail->pRight = pB;
47219 SQLITE_PRIVATE void sqlite3VdbeSwap(Vdbe *pA, Vdbe *pB){
47223 *pA = *pB;
47224 *pB = tmp;
47226 pA->pNext = pB->pNext;
47227 pB->pNext = pTmp;
47229 pA->pPrev = pB->pPrev;
47230 pB->pPrev = pTmp;
47232 pA->zSql = pB->zSql;
47233 pB->zSql = zTmp;
47234 pB->isPrepareV2 = pA->isPrepareV2;
63668 SQLITE_PRIVATE int sqlite3ExprCompare(Expr *pA, Expr *pB){
63670 if( pA==0||pB==0 ){
63671 return pB==pA;
63674 assert( !ExprHasAnyProperty(pB, EP_TokenOnly|EP_Reduced) );
63675 if( ExprHasProperty(pA, EP_xIsSelect) || ExprHasProperty(pB, EP_xIsSelect) ){
63678 if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 0;
63679 if( pA->op!=pB->op ) return 0;
63680 if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0;
63681 if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0;
63683 if( pA->x.pList && pB->x.pList ){
63684 if( pA->x.pList->nExpr!=pB->x.pList->nExpr ) return 0;
63687 Expr *pExprB = pB->x.pList->a[i].pExpr;
63690 }else if( pA->x.pList || pB->x.pList ){
63694 if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0;
63696 if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){
63700 if( ExprHasProperty(pB, EP_IntValue) || NEVER(pB->u.zToken==0) ) return 0;
63701 if( sqlite3StrICmp(pA->u.zToken,pB->u.zToken)!=0 ){
79112 SQLITE_PRIVATE int sqlite3JoinType(Parse *pParse, Token *pA, Token *pB, Token *pC){
79133 apAll[1] = pB;
79155 assert( pB!=0 );
79158 "%T %T%s%T", pA, pB, zSp, pC);