Lines Matching refs:pp1
181861 ** into *pp contains all positions of both *pp1 and *pp2 in sorted
181868 char **pp1, /* Left input list */
181872 char *p1 = *pp1;
181876 int iCol1; /* The current column index in pp1 */
181894 sqlite3_int64 i1 = 0; /* Last position from pp1 */
181938 *pp1 = p1 + 1;
181945 ** called, *pp1 and *pp2 must both point to position lists. A position-list is
181955 ** When this function returns, both *pp1 and *pp2 are left pointing to the
181960 ** *pp1 so that (pos(*pp2)>pos(*pp1) && pos(*pp2)-pos(*pp1)<=nToken). i.e.
181961 ** when the *pp1 token appears before the *pp2 token, but not more than nToken
181970 int isExact, /* If *pp1 is exactly nTokens before *pp2 */
181971 char **pp1, /* IN/OUT: Left input list */
181975 char *p1 = *pp1;
182064 *pp1 = p1;
182081 ** Position list *pp1 corresponds to the left-hand side of the NEAR
182087 ** entries that are not sufficiently NEAR entries in *pp1 removed.
182094 char **pp1, /* IN/OUT: Left input list */
182097 char *p1 = *pp1;
182105 fts3PoslistPhraseMerge(&pTmp1, nRight, 0, 0, pp1, pp2);
182107 *pp1 = p1;
182109 fts3PoslistPhraseMerge(&pTmp2, nLeft, 1, 0, pp2, pp1);
222662 static int sqlite3Fts5ExprAnd(Fts5Expr **pp1, Fts5Expr *p2);
226764 static int sqlite3Fts5ExprAnd(Fts5Expr **pp1, Fts5Expr *p2){
226768 if( *pp1 ){
226769 Fts5Expr *p1 = *pp1;
226794 *pp1 = p2;