Home
last modified time | relevance | path

Searched refs:aHash (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c11985 IdxHashEntry *aHash[IDX_HASH_SIZE]; member
12040 for(pEntry=pHash->aHash[i]; pEntry; pEntry=pNext){ in idxHashClear()
12078 for(pEntry=pHash->aHash[iHash]; pEntry; pEntry=pEntry->pHashNext){ in idxHashAdd()
12091 pEntry->pHashNext = pHash->aHash[iHash]; in idxHashAdd()
12092 pHash->aHash[iHash] = pEntry; in idxHashAdd()
12110 for(pEntry=pHash->aHash[iHash]; pEntry; pEntry=pEntry->pHashNext){ in idxHashFind()
H A Dsqlite3.c53550 u32 aHash[BITVEC_NINT]; /* Hash table representation */
53591 while( p->u.aHash[h] ){
53592 if( p->u.aHash[h]==i ) return 1;
53637 if( !p->u.aHash[h] ){
53647 if( p->u.aHash[h]==i ) return SQLITE_OK;
53650 } while( p->u.aHash[h] );
53658 u32 *aiValues = sqlite3StackAllocRaw(0, sizeof(p->u.aHash));
53662 memcpy(aiValues, p->u.aHash, sizeof(p->u.aHash));
53675 p->u.aHash[h] = i;
53702 memcpy(aiValues, p->u.aHash, sizeof(p->u.aHash));
[all …]