Home | History | Annotate | Download | only in dist

Lines Matching refs:pP1

51847   MemPage *pP1;
51855 pP1 = pBt->pPage1;
51856 assert( pP1!=0 );
51857 data = pP1->aData;
51858 rc = sqlite3PagerWrite(pP1->pDbPage);
51872 zeroPage(pP1, PTF_INTKEY|PTF_LEAF|PTF_LEAFDATA );
56795 unsigned char *pP1;
56801 pP1 = pBt->pPage1->aData;
56804 put4byte(&pP1[36 + idx*4], iMeta);
118563 ** into *pp contains all positions of both *pp1 and *pp2 in sorted
118570 char **pp1, /* Left input list */
118574 char *p1 = *pp1;
118578 int iCol1; /* The current column index in pp1 */
118590 sqlite3_int64 i1 = 0; /* Last position from pp1 */
118631 *pp1 = p1 + 1;
118637 ** called, *pp1 and *pp2 must both point to position lists. A position-list is
118647 ** When this function returns, both *pp1 and *pp2 are left pointing to the
118652 ** *pp1 so that (pos(*pp2)>pos(*pp1) && pos(*pp2)-pos(*pp1
118653 ** when the *pp1 token appears before the *pp2 token, but not more than nToken
118662 int isExact, /* If *pp1 is exactly nTokens before *pp2 */
118663 char **pp1, /* IN/OUT: Left input list */
118667 char *p1 = *pp1;
118757 *pp1 = p1;
118774 ** Position list *pp1 corresponds to the left-hand side of the NEAR
118780 ** entries that are not sufficiently NEAR entries in *pp1 removed.
118787 char **pp1, /* IN/OUT: Left input list */
118790 char *p1 = *pp1;
118798 fts3PoslistPhraseMerge(&pTmp1, nRight, 0, 0, pp1, pp2);
118800 *pp1 = p1;
118802 fts3PoslistPhraseMerge(&pTmp2, nLeft, 1, 0, pp2, pp1);