Lines Matching refs:pArray
126011 ** pArray is a pointer to an array of objects. Each object in the
126025 ** unchanged and a copy of pArray returned.
126029 void *pArray, /* Array of objects. Might be reallocated */
126038 void *pNew = sqlite3DbRealloc(db, pArray, sz*szEntry);
126041 return pArray;
126043 pArray = pNew;
126045 z = (char*)pArray;
126048 return pArray;
243807 Fts5TombstoneArray *pArray = pSeg->pTombArray;
243809 if( pSeg->pLeaf && pArray ){
243811 int iPg = ((u64)pSeg->iRowid) % pArray->nTombstone;
243816 if( pArray->apTombstone[iPg]==0 ){
243817 pArray->apTombstone[iPg] = fts5DataRead(pIter->pIndex,
243820 if( pArray->apTombstone[iPg]==0 ) return 0;
243824 pArray->apTombstone[iPg],
243825 pArray->nTombstone,