Home
last modified time | relevance | path

Searched refs:aSet (Results 1 – 3 of 3) sorted by relevance

/titanic_41/usr/src/lib/libsqlite/src/
H A DvdbeInt.h264 Set *aSet; /* An array of sets */ member
H A Dvdbe.c3739 pSet = &p->aSet[iSet]; in sqliteVdbeExec()
4623 Set *aSet = sqliteRealloc(p->aSet, (i+1)*sizeof(p->aSet[0]) ); in sqliteVdbeExec() local
4624 if( aSet==0 ) goto no_mem; in sqliteVdbeExec()
4625 p->aSet = aSet; in sqliteVdbeExec()
4627 sqliteHashInit(&p->aSet[k].hash, SQLITE_HASH_BINARY, 1); in sqliteVdbeExec()
4632 sqliteHashInsert(&p->aSet[i].hash, pOp->p3, strlen(pOp->p3)+1, p); in sqliteVdbeExec()
4636 sqliteHashInsert(&p->aSet[i].hash, pTos->z, pTos->n, p); in sqliteVdbeExec()
4654 if( i>=0 && i<p->nSet && sqliteHashFind(&p->aSet[i].hash, pTos->z, pTos->n)){ in sqliteVdbeExec()
4673 sqliteHashFind(&p->aSet[i].hash, pTos->z, pTos->n)==0 ){ in sqliteVdbeExec()
4701 pSet = &p->aSet[pOp->p1]; in sqliteVdbeExec()
H A Dvdbeaux.c807 if( p->aSet ){ in Cleanup()
809 sqliteHashClear(&p->aSet[i].hash); in Cleanup()
812 sqliteFree(p->aSet); in Cleanup()
813 p->aSet = 0; in Cleanup()