Lines Matching refs:szPage
139 i64 szPage; /* Value of 'pgSize' column */ member
348 pCsr->szPage = 0; in statResetCounts()
398 int szPage; in statDecodePage() local
416 szPage = sqlite3BtreeGetPageSize(pBt); in statDecodePage()
423 if( iOff>=szPage ) goto statPageIsCorrupt; in statDecodePage()
437 nUsable = szPage - sqlite3BtreeGetReserveNoMutex(pBt); in statDecodePage()
447 if( iOff<nHdr || iOff>=szPage ) goto statPageIsCorrupt; in statDecodePage()
522 pCsr->szPage += x[1]; in statSizeAndOffset()
525 pCsr->szPage += sqlite3BtreeGetPageSize(pBt); in statSizeAndOffset()
526 pCsr->iOffset = (i64)pCsr->szPage * (pCsr->iPageno - 1); in statSizeAndOffset()
844 sqlite3_result_int(ctx, pCsr->szPage); in statColumn()