Lines Matching refs:pElem
76176 Expr *pElem = (pExpr ? sqlite3VectorFieldSubexpr(pExpr, i) : 0);
76179 rc = stat4ValueFromExpr(pParse, pElem, aff, &alloc, &pVal);
109335 HashElem *pElem;
109342 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
109343 Table *pTab = sqliteHashData(pElem);
109349 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
109350 Index *pIdx = sqliteHashData(pElem);
112036 HashElem *pElem;
112043 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){
112044 sqlite3DeleteTrigger(0, (Trigger*)sqliteHashData(pElem));
112048 for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){
112049 Table *pTab = sqliteHashData(pElem);
168561 Fts3HashElem *pElem; /* The element that matches key (if any) */
168563 pElem = sqlite3Fts3HashFindElem(pH, pKey, nKey);
168564 return pElem ? pElem->data : 0;
171425 Fts3HashElem *pElem;
171427 for(pElem=fts3HashFirst(pHash); pElem; pElem=fts3HashNext(pElem)){
171428 PendingList *pList = (PendingList *)fts3HashData(pElem);
171855 Fts3HashElem *pElem = *(pReader->ppNextElem);
171858 if( pElem ){
171860 PendingList *pList = (PendingList *)fts3HashData(pElem);
171862 pReader->zTerm = (char *)fts3HashKey(pElem);
171863 pReader->nTerm = fts3HashKeysize(pElem);