Home | History | Annotate | Download | only in orig

Lines Matching refs:pStart

9688   u8 bMalloced;           /* True if pStart obtained from sqlite3_malloc() */
9693 void *pStart; /* First byte of available memory space */
19021 return p && p>=db->lookaside.pStart && p<db->lookaside.pEnd;
36963 ** szSlot, nSlot, pStart, pEnd, nReserve, and isInit values are all
36971 void *pStart, *pEnd; /* Bounds of pagecache malloc range */
37015 pcache1.pStart = pBuf;
37075 if( p>=pcache1.pStart && p<pcache1.pEnd ){
37103 if( p>=pcache1.pStart && p<pcache1.pEnd ){
37822 if( pcache1.pStart==0 ){
83665 Token *pStart, /* The CREATE token that begins this statement */
83688 assert( pStart==0 || pEnd!=0 ); /* pEnd must be non-NULL if pStart is */
83737 assert( pStart==0 );
84063 if( pStart ){
106458 WhereTerm *pStart, *pEnd;
106461 pStart = findTerm(pWC, iCur, -1, notReady, WO_GT|WO_GE, 0);
106464 pTerm = pStart;
106465 pStart = pEnd;
106468 if( pStart ){
106485 testcase( pStart->wtFlags & TERM_VIRTUAL ); /* EV: R-30575-11662 */
106486 pX = pStart->pExpr;
106488 assert( pStart->leftCursor==iCur );
106494 disableTerm(pLevel, pStart);
106517 if( pStart==0 && pEnd==0 ){
107861 ** range of text beginning with pStart and going to the end of pEnd.
107863 static void spanSet(ExprSpan *pOut, Token *pStart, Token *pEnd){
107864 pOut->zStart = pStart->z;
111952 if( db->lookaside.pStart ) db->lookaside.bEnabled = 1;
112908 ** The cnt parameter is the number of slots. If pStart is NULL the
112910 ** If pStart is not NULL then it is sz*cnt bytes of memory to use for
112914 void *pStart;
112923 sqlite3_free(db->lookaside.pStart);
112933 pStart = 0;
112936 pStart = sqlite3Malloc( sz*cnt ); /* IMP: R-61949-35727 */
112938 if( pStart ) cnt = sqlite3MallocSize(pStart)/sz;
112940 pStart = pBuf;
112942 db->lookaside.pStart = pStart;
112945 if( pStart ){
112949 p = (LookasideSlot*)pStart;
113281 sqlite3_free(db->lookaside.pStart);
117063 ** Argument pStart points to the first byte of the doclist that the
117068 char *pStart,
117077 for(p = (*pp)-2; p>=pStart && *p&0x80; p--);
119794 static void fts3ReversePoslist(char *pStart, char **ppPoslist){
119798 while( p>pStart && (c=*p--)==0 );
119799 while( p>pStart && (*p & 0x80) | c ){
119802 if( p>pStart ){ p = &p[2]; }