Home
last modified time | relevance | path

Searched refs:nLocal (Results 1 – 7 of 7) sorted by relevance

/sqlite-3.40.0/tool/
H A Dshowdb.c333 nLocal -= n; in describeContent()
382 i64 nLocal; in localPayload() local
401 return nLocal; in localPayload()
422 i64 nLocal; in describeCell() local
461 return nLocal+n; in describeCell()
502 i64 nLocal; in decodeCell() local
526 nPayload, nLocal, nPayload-nLocal); in decodeCell()
532 end = x + nLocal; in decodeCell()
539 if( nLocal>0 ){ in decodeCell()
627 if( j<nLocal ){ in decodeCell()
[all …]
H A Dshowwal.c298 pLimit = &a[nLocal]; in describeContent()
307 nLocal -= n; in describeContent()
356 i64 nLocal; in localPayload() local
368 nLocal = surplus; in localPayload()
370 nLocal = minLocal; in localPayload()
373 nLocal = nPayload; in localPayload()
375 return nLocal; in localPayload()
395 i64 nLocal; in describeCell() local
413 nPayload = nLocal = 0; in describeCell()
422 if( nLocal<nPayload ){ in describeCell()
[all …]
/sqlite-3.40.0/src/
H A Ddbstat.c93 int nLocal; /* Bytes of local payload */ member
373 int nLocal; in getLocalPayload() local
385 nLocal = nMinLocal + (nTotal - nMinLocal) % (nUsable - 4); in getLocalPayload()
386 if( nLocal>nMaxLocal ) nLocal = nMinLocal; in getLocalPayload()
387 return nLocal; in getLocalPayload()
464 if( nLocal<0 ) goto statPageIsCorrupt; in statDecodePage()
465 pCell->nLocal = nLocal; in statDecodePage()
466 assert( nPayload>=(u32)nLocal ); in statDecodePage()
467 assert( nLocal<=(nUsable-35) ); in statDecodePage()
468 if( nPayload>(u32)nLocal ){ in statDecodePage()
[all …]
H A Dbtree.c1137 pInfo->nLocal = (u16)surplus; in btreeParseCellAdjustSizeForOverflow()
1139 pInfo->nLocal = (u16)minLocal; in btreeParseCellAdjustSizeForOverflow()
1189 pInfo->nLocal = 0; in btreeParseCellPtrNoPayload()
1270 pInfo->nLocal = (u16)nPayload; in btreeParseCellPtr()
1307 pInfo->nLocal = (u16)nPayload; in btreeParseCellPtrIndex()
1469 if( info.nLocal<info.nPayload ){ in ptrmapPutOvflPtr()
4691 if( a->nLocal!=b->nLocal ) return 0; in cellInfoEqual()
4989 offset -= pCur->info.nLocal; in accessPayload()
5213 amt = pCur->info.nLocal; in fetchPayload()
8930 iOffset = pCur->info.nLocal; in btreeOverwriteCell()
[all …]
H A DbtreeInt.h484 u16 nLocal; /* Amount of payload held locally, not on overflow */ member
/sqlite-3.40.0/ext/recover/
H A Ddbdata.c542 int nLocal; in dbdataNext() local
593 nLocal = nPayload; in dbdataNext()
599 nLocal = K; in dbdataNext()
601 nLocal = M; in dbdataNext()
605 if( bNextPage || nLocal+iOff>pCsr->nPage ){ in dbdataNext()
618 memcpy(pCsr->pRec, &pCsr->aPage[iOff], nLocal); in dbdataNext()
619 iOff += nLocal; in dbdataNext()
622 if( nPayload>nLocal ){ in dbdataNext()
623 sqlite3_int64 nRem = nPayload - nLocal; in dbdataNext()
/sqlite-3.40.0/ext/misc/
H A Dscrub.c430 u32 X, M, K, nLocal; in scrubBackupBtree() local
459 nLocal = K<=X ? K : M; in scrubBackupBtree()
460 if( pc+nLocal > p->szUsable-4 ){ ln=__LINE__; goto btree_corrupt; } in scrubBackupBtree()
461 iChild = scrubBackupInt32(&a[pc+nLocal]); in scrubBackupBtree()
462 scrubBackupOverflow(p, iChild, (u32)(P-nLocal)); in scrubBackupBtree()