Home | History | Annotate | Download | only in orig

Lines Matching refs:iSectorSize

39933     u32 iSectorSize;             /* Sector-size field of journal header */
39936 if( SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+20, &iSectorSize))
39955 if( iPageSize<512 || iSectorSize<32
39956 || iPageSize>SQLITE_MAX_PAGE_SIZE || iSectorSize>MAX_SECTOR_SIZE
39957 || ((iPageSize-1)&iPageSize)!=0 || ((iSectorSize-1)&iSectorSize)!=0
39980 pPager->sectorSize = iSectorSize;