Searched refs:pStart (Results 1 – 2 of 2) sorted by relevance
17492 void *pStart; /* First byte of available memory space */ member20385 Expr *pStart; /* Expression for "<expr> PRECEDING" */ member24025 db->lookaside.pEnd = db->lookaside.pStart; in sqlite3_db_status()24070 db->lookaside.pEnd = db->lookaside.pStart; in sqlite3_db_status()30272 return SQLITE_WITHIN(p, db->lookaside.pStart, db->lookaside.pTrueEnd); in isLookaside()30312 if( ((uptr)p)>=(uptr)(db->lookaside.pStart) ){ in sqlite3DbMallocSize()30374 if( ((uptr)p)>=(uptr)(db->lookaside.pStart) ){ in sqlite3DbFreeNN()30413 if( ((uptr)p)>=(uptr)(db->lookaside.pStart) ){ in sqlite3DbNNFreeNN()30647 if( ((uptr)p)>=(uptr)db->lookaside.pStart ){ in sqlite3DbRealloc()32725 sqlite3TreeViewBound(pView, pWin->eStart, pWin->pStart, 1); in sqlite3TreeViewWindow()[all …]
1333 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){ in timeDiff() argument1334 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 + in timeDiff()1335 (double)(pEnd->tv_sec - pStart->tv_sec); in timeDiff()1411 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){ in timeDiff() argument1412 sqlite_int64 i64Start = *((sqlite_int64 *) pStart); in timeDiff()