• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/sqlite/

Lines Matching defs:pStart

8571   u8 bMalloced;           /* True if pStart obtained from sqlite3_malloc() */
8575 void *pStart; /* First byte of available memory space */
17501 return p && p>=db->lookaside.pStart && p<db->lookaside.pEnd;
32901 void *pStart, *pEnd; /* Bounds of pagecache malloc range */
32948 pcache1.pStart = pBuf;
33001 if( p>=pcache1.pStart && p<pcache1.pEnd ){
33023 if( p>=pcache1.pStart && p<pcache1.pEnd ){
33580 if( pcache1.pStart==0 ){
76085 Token *pStart, /* The CREATE token that begins this statement */
76108 assert( pStart==0 || pEnd!=0 ); /* pEnd must be non-NULL if pStart is */
76471 if( pStart ){
97462 WhereTerm *pStart, *pEnd;
97465 pStart = findTerm(pWC, iCur, -1, notReady, WO_GT|WO_GE, 0);
97468 pTerm = pStart;
97469 pStart = pEnd;
97472 if( pStart ){
97489 testcase( pStart->wtFlags & TERM_VIRTUAL ); /* EV: R-30575-11662 */
97490 pX = pStart->pExpr;
97492 assert( pStart->leftCursor==iCur );
97498 disableTerm(pLevel, pStart);
97521 if( pStart==0 && pEnd==0 ){
98801 ** range of text beginning with pStart and going to the end of pEnd.
98803 static void spanSet(ExprSpan *pOut, Token *pStart, Token *pEnd){
98804 pOut->zStart = pStart->z;
102859 if( db->lookaside.pStart ) db->lookaside.bEnabled = 1;
103754 ** The cnt parameter is the number of slots. If pStart is NULL the
103756 ** If pStart is not NULL then it is sz*cnt bytes of memory to use for
103760 void *pStart;
103769 sqlite3_free(db->lookaside.pStart);
103778 pStart = 0;
103782 pStart = sqlite3Malloc( sz*cnt );
103786 pStart = pBuf;
103788 db->lookaside.pStart = pStart;
103791 if( pStart ){
103795 p = (LookasideSlot*)pStart;
104060 sqlite3_free(db->lookaside.pStart);