Lines Matching refs:uptr
14448 /* The uptr type is an unsigned integer large enough to hold a pointer
14451 typedef uintptr_t uptr;
14453 typedef u32 uptr;
14455 typedef u64 uptr;
14466 #define SQLITE_WITHIN(P,S,E) (((uptr)(P)>=(uptr)(S))&&((uptr)(P)<(uptr)(E)))
29410 if( ((uptr)p)<(uptr)(db->lookaside.pTrueEnd) ){
29412 if( ((uptr)p)>=(uptr)(db->lookaside.pMiddle) ){
29417 if( ((uptr)p)>=(uptr)(db->lookaside.pStart) ){
29466 if( ((uptr)p)<(uptr)(db->lookaside.pEnd) ){
29468 if( ((uptr)p)>=(uptr)(db->lookaside.pMiddle) ){
29479 if( ((uptr)p)>=(uptr)(db->lookaside.pStart) ){
29505 if( ((uptr)p)<(uptr)(db->lookaside.pEnd) ){
29507 if( ((uptr)p)>=(uptr)(db->lookaside.pMiddle) ){
29518 if( ((uptr)p)>=(uptr)(db->lookaside.pStart) ){
29746 if( ((uptr)p)<(uptr)db->lookaside.pEnd ){
29748 if( ((uptr)p)>=(uptr)db->lookaside.pMiddle ){
29752 if( ((uptr)p)>=(uptr)db->lookaside.pStart ){
71308 if( (uptr)p->pBt<(uptr)pSib->pBt ){
71313 while( pSib->pNext && (uptr)pSib->pNext->pBt<(uptr)p->pBt ){
73609 if( (uptr)(aPayload - pPage->aData) > (pBt->usableSize - pCur->info.nLocal) ){
75952 if( ((uptr)(pCell+sz))>(uptr)pEnd ) return SQLITE_CORRUPT_BKPT;
75954 }else if( (uptr)(pCell+sz)>(uptr)pSrcEnd
75955 && (uptr)(pCell)<(uptr)pSrcEnd
76044 if( (uptr)(pCArray->apCell[i]+sz)>(uptr)pEnd
76045 && (uptr)(pCArray->apCell[i])<(uptr)pEnd
174228 assert( ((uptr)p)<=szAlloc + (uptr)pStart );