Lines Matching refs:pElem
71184 Expr *pElem = (pExpr ? sqlite3VectorFieldSubexpr(pExpr, i) : 0);
71187 rc = stat4ValueFromExpr(pParse, pElem, aff, &alloc, &pVal);
101752 HashElem *pElem;
101759 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
101760 Table *pTab = sqliteHashData(pElem);
101766 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
101767 Index *pIdx = sqliteHashData(pElem);
104342 HashElem *pElem;
104349 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){
104350 sqlite3DeleteTrigger(0, (Trigger*)sqliteHashData(pElem));
104354 for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){
104355 Table *pTab = sqliteHashData(pElem);
153379 Fts3HashElem *pElem; /* The element that matches key (if any) */
153381 pElem = sqlite3Fts3HashFindElem(pH, pKey, nKey);
153382 return pElem ? pElem->data : 0;
156236 Fts3HashElem *pElem;
156238 for(pElem=fts3HashFirst(pHash); pElem; pElem=fts3HashNext(pElem)){
156239 PendingList *pList = (PendingList *)fts3HashData(pElem);
156664 Fts3HashElem *pElem = *(pReader->ppNextElem);
156667 if( pElem ){
156669 PendingList *pList = (PendingList *)fts3HashData(pElem);
156671 pReader->zTerm = (char *)fts3HashKey(pElem);
156672 pReader->nTerm = fts3HashKeysize(pElem);