Lines Matching refs:pElem
76192 Expr *pElem = (pExpr ? sqlite3VectorFieldSubexpr(pExpr, i) : 0);
76195 rc = stat4ValueFromExpr(pParse, pElem, aff, &alloc, &pVal);
109351 HashElem *pElem;
109358 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
109359 Table *pTab = sqliteHashData(pElem);
109365 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
109366 Index *pIdx = sqliteHashData(pElem);
112052 HashElem *pElem;
112059 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){
112060 sqlite3DeleteTrigger(0, (Trigger*)sqliteHashData(pElem));
112064 for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){
112065 Table *pTab = sqliteHashData(pElem);
168589 Fts3HashElem *pElem; /* The element that matches key (if any) */
168591 pElem = sqlite3Fts3HashFindElem(pH, pKey, nKey);
168592 return pElem ? pElem->data : 0;
171453 Fts3HashElem *pElem;
171455 for(pElem=fts3HashFirst(pHash); pElem; pElem=fts3HashNext(pElem)){
171456 PendingList *pList = (PendingList *)fts3HashData(pElem);
171883 Fts3HashElem *pElem = *(pReader->ppNextElem);
171886 if( pElem ){
171888 PendingList *pList = (PendingList *)fts3HashData(pElem);
171890 pReader->zTerm = (char *)fts3HashKey(pElem);
171891 pReader->nTerm = fts3HashKeysize(pElem);