Lines Matching refs:pEntry

26047   struct _ht *pEntry,    /* The entry into which pNew is inserted */
26051 if( pEntry ){
26052 pHead = pEntry->count ? pEntry->chain : 0;
26053 pEntry->count++;
26054 pEntry->chain = pNew;
26129 struct _ht *pEntry;
26131 pEntry = &pH->ht[h];
26132 elem = pEntry->chain;
26133 count = pEntry->count;
26158 struct _ht *pEntry;
26168 pEntry = &pH->ht[h];
26169 if( pEntry->chain==elem ){
26170 pEntry->chain = elem->next;
26172 pEntry->count--;
26173 assert( pEntry->count>=0 );
42484 struct RowSetEntry *pEntry; /* List of entries using pRight */
42517 p->pEntry = 0;
42540 p->pEntry = 0;
42578 struct RowSetEntry *pEntry; /* The new entry */
42584 pEntry = rowSetEntryAlloc(p);
42585 if( pEntry==0 ) return;
42586 pEntry->v = rowid;
42587 pEntry->pRight = 0;
42593 pLast->pRight = pEntry;
42595 p->pEntry = pEntry;
42597 p->pLast = pEntry;
42767 p->pEntry = rowSetEntrySort(p->pEntry);
42781 p->pEntry = rowSetEntryMerge(p->pEntry, pHead);
42804 if( p->pEntry ){
42805 *pRowid = p->pEntry->v;
42806 p->pEntry = p->pEntry->pRight;
42807 if( p->pEntry==0 ){
42833 p = pRowSet->pEntry;
42859 pRowSet->pEntry = 0;
143843 struct _fts3ht *pEntry, /* The entry into which pNew is inserted */
143847 pHead = pEntry->chain;
143860 pEntry->count++;
143861 pEntry->chain = pNew;
143906 struct _fts3ht *pEntry = &pH->ht[h];
143907 elem = pEntry->chain;
143908 count = pEntry->count;
143928 struct _fts3ht *pEntry;
143937 pEntry = &pH->ht[h];
143938 if( pEntry->chain==elem ){
143939 pEntry->chain = elem->next;
143941 pEntry->count--;
143942 if( pEntry->count<=0 ){
143943 pEntry->chain = 0;
172418 Fts5HashEntry *pEntry = pIter;
172419 pEntry->pScanNext = 0;
172421 pEntry = fts5HashEntryMerge(pEntry, ap[i]);
172424 ap[i] = pEntry;