Lines Matching refs:szKey
253391 const int szKey = TOMBSTONE_KEYSIZE(pHash); local
253398 }else if( szKey==4 ){
257930 const int szKey = TOMBSTONE_KEYSIZE(pPg); local
257936 if( szKey==4 && iRowid>0xFFFFFFFF ) return 2;
257947 if( szKey==4 ){
257983 int szKey, /* 4 or 8, the keysize */ argument
257992 apOut[ii]->p[0] = szKey;
258062 int szKey, /* 4 or 8, the keysize */ argument
258067 int nSlotPerPage = MAX(MINSLOT, (p->pConfig->pgsz - 8) / szKey);
258116 szPage = 8 + nSlot*szKey;
258130 res = fts5IndexTombstoneRehash(p, pSeg, pData1, iPg1, szKey, nOut, apOut);
258163 int szKey = 0; local
258185 szKey = pPg ? TOMBSTONE_KEYSIZE(pPg) : 4;
258186 if( iRowid>0xFFFFFFFF ) szKey = 8;
258189 fts5IndexTombstoneRebuild(p, pSeg, pPg, iPg, szKey, &nHash, &apHash);
259116 int szKey = (aBlob[0]==4 || aBlob[0]==8) ? aBlob[0] : 8; local
259117 int nSlot = (n - 8) / szKey;
259125 if( szKey==4 ){