Lines Matching refs:nSz
249707 int nSz = (nData - p->iSzPoslist - 1); /* Size in bytes */ local
249708 int nPos = nSz*2 + p->bDel; /* Value of nPos field */
249715 memmove(&pPtr[p->iSzPoslist + nByte], &pPtr[p->iSzPoslist + 1], nSz);
251944 int nSz; local
251946 fts5FastGetVarint32(p, n, nSz);
251947 assert_nc( nSz>=0 );
251948 *pnSz = nSz/2;
251949 *pbDel = nSz & 0x0001;
251983 int nSz; local
251984 fts5FastGetVarint32(pIter->pLeaf->p, iOff, nSz);
251985 pIter->bDel = (nSz & 0x0001);
251986 pIter->nPos = nSz>>1;
252484 int nSz; local
252486 fts5FastGetVarint32(pIter->pLeaf->p, pIter->iLeafOffset, nSz);
252487 pIter->bDel = (nSz & 0x0001);
252488 pIter->nPos = nSz>>1;