Lines Matching defs:pPgidx
233996 Fts5Buffer *pPgidx = &pWriter->writer.pgidx;
234004 if( (pPage->buf.n + pPgidx->n + nTerm + 2)>=p->pConfig->pgsz ){
234013 pPgidx->n += sqlite3Fts5PutVarint(
234014 &pPgidx->p[pPgidx->n], pPage->buf.n - pPage->iPrevPgidx
234018 fts5PutU16(&pPgidx->p[pPgidx->n], pPage->buf.n);
234019 pPgidx->n += 2;
234595 Fts5Buffer *pPgidx; /* Buffer in which to assemble pgidx */
234601 pPgidx = &writer.writer.pgidx;
234606 assert( p->rc || pPgidx->nSpace>=(pgsz + FTS5_DATA_PADDING) );
234624 if( pgsz>=(pBuf->n + pPgidx->n + nDoclist + 1) ){
234659 if( (pBuf->n + pPgidx->n)>=pgsz ){
234667 if( (pBuf->n + pPgidx->n + nCopy) <= pgsz ){
234678 int nSpace = pgsz - pBuf->n - pPgidx->n;
234688 if( (pBuf->n + pPgidx->n)>=pgsz ){