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);
153367 Fts3HashElem *pElem; /* The element that matches key (if any) */
153369 pElem = sqlite3Fts3HashFindElem(pH, pKey, nKey);
153370 return pElem ? pElem->data : 0;
156224 Fts3HashElem *pElem;
156226 for(pElem=fts3HashFirst(pHash); pElem; pElem=fts3HashNext(pElem)){
156227 PendingList *pList = (PendingList *)fts3HashData(pElem);
156652 Fts3HashElem *pElem = *(pReader->ppNextElem);
156655 if( pElem ){
156657 PendingList *pList = (PendingList *)fts3HashData(pElem);
156659 pReader->zTerm = (char *)fts3HashKey(pElem);
156660 pReader->nTerm = fts3HashKeysize(pElem);