Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c12064 IdxHashEntry *aHash[IDX_HASH_SIZE]; member
12119 for(pEntry=pHash->aHash[i]; pEntry; pEntry=pNext){ in idxHashClear()
12157 for(pEntry=pHash->aHash[iHash]; pEntry; pEntry=pEntry->pHashNext){ in idxHashAdd()
12170 pEntry->pHashNext = pHash->aHash[iHash]; in idxHashAdd()
12171 pHash->aHash[iHash] = pEntry; in idxHashAdd()
12189 for(pEntry=pHash->aHash[iHash]; pEntry; pEntry=pEntry->pHashNext){ in idxHashFind()
H A Dsqlite3.c53909 u32 aHash[BITVEC_NINT]; /* Hash table representation */
53950 while( p->u.aHash[h] ){
53951 if( p->u.aHash[h]==i ) return 1;
53996 if( !p->u.aHash[h] ){
54006 if( p->u.aHash[h]==i ) return SQLITE_OK;
54009 } while( p->u.aHash[h] );
54017 u32 *aiValues = sqlite3StackAllocRaw(0, sizeof(p->u.aHash));
54021 memcpy(aiValues, p->u.aHash, sizeof(p->u.aHash));
54034 p->u.aHash[h] = i;
54061 memcpy(aiValues, p->u.aHash, sizeof(p->u.aHash));
[all …]