Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/sqlite3/
H A Dshell.c2982 const struct sqlite3_index_constraint *pConstraint; in fsdirBestIndex() local
2985 pConstraint = pIdxInfo->aConstraint; in fsdirBestIndex()
2986 for(i=0; i<pIdxInfo->nConstraint; i++, pConstraint++){ in fsdirBestIndex()
2988 switch( pConstraint->iColumn ){ in fsdirBestIndex()
2990 if( pConstraint->usable ){ in fsdirBestIndex()
2999 if( pConstraint->usable ){ in fsdirBestIndex()
3517 const struct sqlite3_index_constraint *pConstraint; in completionBestIndex() local
3520 pConstraint = pIdxInfo->aConstraint; in completionBestIndex()
3522 if( pConstraint->usable==0 ) continue; in completionBestIndex()
3524 switch( pConstraint->iColumn ){ in completionBestIndex()
[all …]
H A Dsqlite3.c127692 const struct sqlite3_index_constraint *pConstraint;
127698 pConstraint = pIdxInfo->aConstraint;
127702 if( pConstraint->usable==0 ) continue;
127705 j = pConstraint->iColumn - pTab->iHidden;
186908 pConstraint = pIdxInfo->aConstraint;
186913 iCol = pConstraint->iColumn - JEACH_JSON;
186916 if( pConstraint->usable==0 ){
188372 assert( pConstraint->op==RTREE_MATCH || pConstraint->op==RTREE_QUERY );
188409 if( pConstraint->op==RTREE_MATCH ){
188420 rc = pConstraint->u.xQueryFunc(pInfo);
[all …]
/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c127895 RtreeConstraint *pConstraint, /* MATCH constraint to test */
127903 assert( pConstraint->op==RTREE_MATCH );
127904 assert( pConstraint->pGeom );
127909 return pConstraint->xGeom(pConstraint->pGeom, nCoord, aCoord, pbRes);