Lines Matching defs:pElem
82383 Expr *pElem = (pExpr ? sqlite3VectorFieldSubexpr(pExpr, i) : 0);
82386 rc = stat4ValueFromExpr(pParse, pElem, aff, &alloc, &pVal);
120692 HashElem *pElem;
120699 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
120700 Table *pTab = sqliteHashData(pElem);
120706 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
120707 Index *pIdx = sqliteHashData(pElem);
123646 HashElem *pElem;
123655 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){
123656 sqlite3DeleteTrigger(&xdb, (Trigger*)sqliteHashData(pElem));
123660 for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){
123661 Table *pTab = sqliteHashData(pElem);
187919 Fts3HashElem *pElem; /* The element that matches key (if any) */
187921 pElem = sqlite3Fts3HashFindElem(pH, pKey, nKey);
187922 return pElem ? pElem->data : 0;
190788 Fts3HashElem *pElem;
190790 for(pElem=fts3HashFirst(pHash); pElem; pElem=fts3HashNext(pElem)){
190791 PendingList *pList = (PendingList *)fts3HashData(pElem);
191218 Fts3HashElem *pElem = *(pReader->ppNextElem);
191221 if( pElem ){
191223 PendingList *pList = (PendingList *)fts3HashData(pElem);
191226 int nTerm = fts3HashKeysize(pElem);
191233 memcpy(pReader->zTerm, fts3HashKey(pElem), nTerm);