Lines Matching defs:nSz
229652 int nSz = (nData - p->iSzPoslist - 1); /* Size in bytes */
229653 int nPos = nSz*2 + p->bDel; /* Value of nPos field */
229660 memmove(&pPtr[p->iSzPoslist + nByte], &pPtr[p->iSzPoslist + 1], nSz);
231626 int nSz;
231628 fts5FastGetVarint32(p, n, nSz);
231629 assert_nc( nSz>=0 );
231630 *pnSz = nSz/2;
231631 *pbDel = nSz & 0x0001;
231665 int nSz;
231666 fts5FastGetVarint32(pIter->pLeaf->p, iOff, nSz);
231667 pIter->bDel = (nSz & 0x0001);
231668 pIter->nPos = nSz>>1;
232142 int nSz;
232144 fts5FastGetVarint32(pIter->pLeaf->p, pIter->iLeafOffset, nSz);
232145 pIter->bDel = (nSz & 0x0001);
232146 pIter->nPos = nSz>>1;