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 );
42466 struct RowSetEntry *pEntry; /* List of entries using pRight */
42499 p->pEntry = 0;
42522 p->pEntry = 0;
42560 struct RowSetEntry *pEntry; /* The new entry */
42566 pEntry = rowSetEntryAlloc(p);
42567 if( pEntry==0 ) return;
42568 pEntry->v = rowid;
42569 pEntry->pRight = 0;
42575 pLast->pRight = pEntry;
42577 p->pEntry = pEntry;
42579 p->pLast = pEntry;
42749 p->pEntry = rowSetEntrySort(p->pEntry);
42763 p->pEntry = rowSetEntryMerge(p->pEntry, pHead);
42786 if( p->pEntry ){
42787 *pRowid = p->pEntry->v;
42788 p->pEntry = p->pEntry->pRight;
42789 if( p->pEntry==0 ){
42815 p = pRowSet->pEntry;
42841 pRowSet->pEntry = 0;
143813 struct _fts3ht *pEntry, /* The entry into which pNew is inserted */
143817 pHead = pEntry->chain;
143830 pEntry->count++;
143831 pEntry->chain = pNew;
143876 struct _fts3ht *pEntry = &pH->ht[h];
143877 elem = pEntry->chain;
143878 count = pEntry->count;
143898 struct _fts3ht *pEntry;
143907 pEntry = &pH->ht[h];
143908 if( pEntry->chain==elem ){
143909 pEntry->chain = elem->next;
143911 pEntry->count--;
143912 if( pEntry->count<=0 ){
143913 pEntry->chain = 0;
172388 Fts5HashEntry *pEntry = pIter;
172389 pEntry->pScanNext = 0;
172391 pEntry = fts5HashEntryMerge(pEntry, ap[i]);
172394 ap[i] = pEntry;