Home | History | Annotate | Download | only in dist

Lines Matching refs:nSz

249699       int nSz = (nData - p->iSzPoslist - 1);       /* Size in bytes */
249700 int nPos = nSz*2 + p->bDel; /* Value of nPos field */
249707 memmove(&pPtr[p->iSzPoslist + nByte], &pPtr[p->iSzPoslist + 1], nSz);
251936 int nSz;
251938 fts5FastGetVarint32(p, n, nSz);
251939 assert_nc( nSz>=0 );
251940 *pnSz = nSz/2;
251941 *pbDel = nSz & 0x0001;
251975 int nSz;
251976 fts5FastGetVarint32(pIter->pLeaf->p, iOff, nSz);
251977 pIter->bDel = (nSz & 0x0001);
251978 pIter->nPos = nSz>>1;
252476 int nSz;
252478 fts5FastGetVarint32(pIter->pLeaf->p, pIter->iLeafOffset, nSz);
252479 pIter->bDel = (nSz & 0x0001);
252480 pIter->nPos = nSz>>1;