Lines Matching refs:sqlite3Get4byte
22130 SQLITE_PRIVATE u32 sqlite3Get4byte(const u8*);
36956 SQLITE_PRIVATE u32 sqlite3Get4byte(const u8 *p){ in sqlite3Get4byte() function
59159 *pRes = sqlite3Get4byte(ac);
61145 change_counter = sqlite3Get4byte((u8*)pPg->pPager->dbFileVers)+1;
66899 pgno = sqlite3Get4byte(&aFrame[0]);
66912 if( aCksum[0]!=sqlite3Get4byte(&aFrame[16])
66913 || aCksum[1]!=sqlite3Get4byte(&aFrame[20])
66923 *pnTruncate = sqlite3Get4byte(&aFrame[4]);
67317 magic = sqlite3Get4byte(&aBuf[0]);
67318 szPage = sqlite3Get4byte(&aBuf[8]);
67328 pWal->nCkpt = sqlite3Get4byte(&aBuf[12]);
67335 if( pWal->hdr.aFrameCksum[0]!=sqlite3Get4byte(&aBuf[24])
67336 || pWal->hdr.aFrameCksum[1]!=sqlite3Get4byte(&aBuf[28])
67343 version = sqlite3Get4byte(&aBuf[4]);
68030 sqlite3Put4byte((u8*)&aSalt[0], 1 + sqlite3Get4byte((u8*)&aSalt[0]));
69867 pWal->hdr.aFrameCksum[0] = sqlite3Get4byte(aBuf);
69868 pWal->hdr.aFrameCksum[1] = sqlite3Get4byte(&aBuf[sizeof(u32)]);
69877 iPgno = sqlite3Get4byte(aBuf);
69878 nDbSize = sqlite3Get4byte(&aBuf[4]);
71240 #define get4byte sqlite3Get4byte
227156 p->iRightChildPg = isLeaf ? 0 : sqlite3Get4byte(&aHdr[8]);
227175 pCell->iChildPg = sqlite3Get4byte(&aData[iOff]);
227204 pCell->aOvfl[0] = sqlite3Get4byte(&aData[iOff+nLocal]);
227214 pCell->aOvfl[j] = sqlite3Get4byte(sqlite3PagerGetData(pPg));