Lines Matching defs:seekHit
16136 #define OP_SeekHit 125 /* synopsis: set P2<=seekHit<=P3 */
22498 u16 seekHit; /* See the OP_SeekHit and OP_IfNoHope opcodes */
35727 /* 125 */ "SeekHit" OpHelp("set P2<=seekHit<=P3"),
95353 ** Synopsis: set P2<=seekHit<=P3
95355 ** Increase or decrease the seekHit value for cursor P1, if necessary,
95358 ** The seekHit integer represents the maximum of terms in an index for which
95359 ** there is known to be at least one match. If the seekHit value is smaller
95372 if( pC->seekHit<pOp->p2 ){
95375 printf("seekHit changes from %d to %d\n", pC->seekHit, pOp->p2);
95378 pC->seekHit = pOp->p2;
95379 }else if( pC->seekHit>pOp->p3 ){
95382 printf("seekHit changes from %d to %d\n", pC->seekHit, pOp->p3);
95385 pC->seekHit = pOp->p3;
95456 ** A value of N in the seekHit flag of cursor P1 means that there exists
95459 ** index. If it is not possible, we can skips some work. So if seekHit
95505 printf("seekHit is %d\n", pC->seekHit);
95508 if( pC->seekHit>=pOp->p4.i ) break;
95591 pC->seekHit = pOp->p4.i;