Searched defs:pRight (Results 1 - 6 of 6) sorted by relevance
| /osnet-11/usr/src/lib/libsqlite/src/ |
| H A D | pragma.c | 162 void sqlitePragma(Parse *pParse, Token *pLeft, Token *pRight, int minusFlag){ argument 173 sqliteSetNString(&zRight, "-", 1, pRight->z, pRight->n, 0); 175 zRight = sqliteStrNDup(pRight->z, pRight->n); 212 if( pRight->z==pLeft->z ){ 250 if( pRight->z==pLeft->z ){ 298 if( pRight->z==pLeft->z ){ 341 if( pRight->z==pLeft->z ){ 523 if( pRight [all...] |
| H A D | expr.c | 28 Expr *sqliteExpr(int op, Expr *pLeft, Expr *pRight, Token *pToken){ argument 32 /* When malloc fails, we leak memory from pLeft and pRight */ 37 pNew->pRight = pRight; 46 if( pLeft && pRight ){ 47 sqliteExprSpan(pNew, &pLeft->span, &pRight->span); 59 void sqliteExprSpan(Expr *pExpr, Token *pLeft, Token *pRight){ argument 60 assert( pRight!=0 ); 63 if( pExpr && pRight->z && pLeft->z ){ 64 if( pLeft->dyn==0 && pRight 669 Expr *pRight; local [all...] |
| H A D | btree_rb.c | 131 BtRbNode *pRight; /* Nodes right child, or NULL */ member in struct:BtRbNode 212 pY = pX->pRight; 218 else pX->pParent->pRight = pY; 222 pX->pRight = pb; 245 pb = pY->pRight; 250 else pX->pParent->pRight = pY; 252 pY->pRight = pX; 302 orig = append_node( orig, pNode->pRight, indent ); 351 if( pNode->pRight ){ 352 pNode = pNode->pRight; [all...] |
| H A D | select.c | 199 p = p->pRight; 811 && (pR=p->pRight)!=0 && pR->token.z && pR->token.z[0] ){ 937 if( pE->op==TK_DOT && pE->pRight && pE->pRight->op==TK_ALL 952 (pE->op!=TK_DOT || pE->pRight==0 || pE->pRight->op!=TK_ALL) ){ 981 Expr *pExpr, *pLeft, *pRight; local 995 pRight = sqliteExpr(TK_ID, 0, 0, 0); 996 if( pRight==0 ) break; 997 pRight [all...] |
| H A D | vdbe.c | 366 static Sorter *Merge(Sorter *pLeft, Sorter *pRight){ argument 371 while( pLeft && pRight ){ 372 int c = sqliteSortCompare(pLeft->zKey, pRight->zKey); 377 pTail->pNext = pRight; 378 pRight = pRight->pNext; 384 }else if( pRight ){ 385 pTail->pNext = pRight;
|
| H A D | sqliteInt.h | 658 ** Expr.pRight and Expr.pLeft are subexpressions. Expr.pList is a list 689 Expr *pLeft, *pRight; /* Left and right subnodes */ member in struct:Expr
|
Completed in 61 milliseconds