Lines Matching refs:i

158   int i;  in AggInsert()  local
172 for(i=0, pMem=pElem->aMem; i<p->nMem; i++, pMem++){ in AggInsert()
202 sqlite_snprintf(sizeof(pStack->zShort),pStack->zShort,"%d",pStack->i); in hardStringify()
291 int i, c; in toInt() local
301 for(i=0; (c=zNum[i])>='0' && c<='9'; i++){ in toInt()
305 return c==0 && i>0 && (i<10 || (i==10 && memcmp(zNum,"2147483647",10)<=0)); in toInt()
318 pStack->i = (int)pStack->r; in hardIntegerify()
321 toInt(pStack->z, &pStack->i); in hardIntegerify()
324 pStack->i = 0; in hardIntegerify()
340 pStack->r = pStack->i; in hardRealify()
388 int i, c; in vdbe_fgets() local
389 for(i=0; i<nBuf-1 && (c=getc(in))!=EOF; i++){ in vdbe_fgets()
390 zBuf[i] = c; in vdbe_fgets()
393 zBuf[i] = '\n'; in vdbe_fgets()
397 i++; in vdbe_fgets()
401 zBuf[i] = 0; in vdbe_fgets()
402 return i>0 ? zBuf : 0; in vdbe_fgets()
683 pTos->i = pOp->p1; in sqliteVdbeExec()
794 int i; in sqliteVdbeExec() local
799 for(i=0; i<pOp->p1; i++, pFrom++){ in sqliteVdbeExec()
865 int i; in sqliteVdbeExec() local
871 for(i=0; i<pOp->p1; i++, pCol++){ in sqliteVdbeExec()
873 azArgv[i] = 0; in sqliteVdbeExec()
876 azArgv[i] = pCol->z; in sqliteVdbeExec()
879 azArgv[i] = 0; in sqliteVdbeExec()
905 int i, j; in sqliteVdbeExec() local
917 for(i=0; i<nField; i++, pTerm++){ in sqliteVdbeExec()
938 for(i=j=0; i<nField; i++, pTerm++){ in sqliteVdbeExec()
942 if( nSep>0 && i<nField-1 ){ in sqliteVdbeExec()
1018 a = pTos->i; in sqliteVdbeExec()
1019 b = pNos->i; in sqliteVdbeExec()
1038 pTos->i = b; in sqliteVdbeExec()
1088 int n, i; in sqliteVdbeExec() local
1096 for(i=0; i<n; i++, pArg++){ in sqliteVdbeExec()
1098 azArgv[i] = 0; in sqliteVdbeExec()
1101 azArgv[i] = pArg->z; in sqliteVdbeExec()
1170 a = pTos->i; in sqliteVdbeExec()
1171 b = pNos->i; in sqliteVdbeExec()
1183 pTos->i = a; in sqliteVdbeExec()
1198 pTos->i += pOp->p1; in sqliteVdbeExec()
1223 v = pTos->i + (pOp->p1!=0); in sqliteVdbeExec()
1231 pTos->i = v; in sqliteVdbeExec()
1252 int i = (int)pTos->r; in sqliteVdbeExec() local
1253 double r = (double)i; in sqliteVdbeExec()
1257 pTos->i = i; in sqliteVdbeExec()
1272 pTos->i = v; in sqliteVdbeExec()
1424 c = pNos->i - pTos->i; in sqliteVdbeExec()
1426 c = v - pTos->i; in sqliteVdbeExec()
1428 c = pNos->i - v; in sqliteVdbeExec()
1447 pTos->i = c; in sqliteVdbeExec()
1601 pTos->i = c; in sqliteVdbeExec()
1628 v1 = pTos->i==0; in sqliteVdbeExec()
1634 v2 = pNos->i==0; in sqliteVdbeExec()
1648 pTos->i = v1==0; in sqliteVdbeExec()
1677 if( pOp->opcode==OP_Negative || pTos->i<0 ){ in sqliteVdbeExec()
1678 pTos->i = -pTos->i; in sqliteVdbeExec()
1705 pTos->i = !pTos->i; in sqliteVdbeExec()
1721 pTos->i = ~pTos->i; in sqliteVdbeExec()
1763 c = pTos->i; in sqliteVdbeExec()
1779 int i, cnt; in sqliteVdbeExec() local
1785 for(i=0; i<cnt; i++, pTerm++){ in sqliteVdbeExec()
1802 int i, cnt; in sqliteVdbeExec() local
1806 for(i=0; i<cnt && (pTos[1+i-cnt].flags & MEM_Null)==0; i++){} in sqliteVdbeExec()
1807 if( i>=cnt ) pc = pOp->p2-1; in sqliteVdbeExec()
1837 int i, j; in sqliteVdbeExec() local
1867 for(i=0; i<nField; i++, pRec++){ in sqliteVdbeExec()
1896 for(i=0, pRec=&pTos[1-nField]; i<nField; i++, pRec++){ in sqliteVdbeExec()
1920 for(i=0, pRec=&pTos[1-nField]; i<nField; i++, pRec++){ in sqliteVdbeExec()
2020 int i, j; in sqliteVdbeExec() local
2030 for(j=0, i=0; i<nField; i++, j++, pRec++){ in sqliteVdbeExec()
2043 pRec->r = pRec->i; in sqliteVdbeExec()
2072 for(i=0; i<nField; i++, pRec++){ in sqliteVdbeExec()
2092 iKey = intToKey(pRec->i); in sqliteVdbeExec()
2145 int i = pOp->p1; in sqliteVdbeExec() local
2146 if( i>=0 && i<db->nDb && db->aDb[i].pBt && db->aDb[i].inTrans==1 ){ in sqliteVdbeExec()
2147 rc = sqliteBtreeBeginCkpt(db->aDb[i].pBt); in sqliteVdbeExec()
2148 if( rc==SQLITE_OK ) db->aDb[i].inTrans = 2; in sqliteVdbeExec()
2171 int i = pOp->p1; in sqliteVdbeExec() local
2172 assert( i>=0 && i<db->nDb ); in sqliteVdbeExec()
2173 if( db->aDb[i].inTrans ) break; in sqliteVdbeExec()
2174 while( db->aDb[i].pBt!=0 && busy ){ in sqliteVdbeExec()
2175 rc = sqliteBtreeBeginTrans(db->aDb[i].pBt); in sqliteVdbeExec()
2204 db->aDb[i].inTrans = 1; in sqliteVdbeExec()
2218 int i; in sqliteVdbeExec() local
2226 for(i=0; rc==SQLITE_OK && i<db->nDb; i++){ in sqliteVdbeExec()
2227 if( db->aDb[i].inTrans ){ in sqliteVdbeExec()
2228 rc = sqliteBtreeCommit(db->aDb[i].pBt); in sqliteVdbeExec()
2229 db->aDb[i].inTrans = 0; in sqliteVdbeExec()
2278 pTos->i = aMeta[1+pOp->p2]; in sqliteVdbeExec()
2302 aMeta[1+pOp->p2] = pTos->i; in sqliteVdbeExec()
2384 int i = pOp->p1; in sqliteVdbeExec() local
2392 iDb = pTos->i; in sqliteVdbeExec()
2401 p2 = pTos->i; in sqliteVdbeExec()
2409 assert( i>=0 ); in sqliteVdbeExec()
2410 if( expandCursorArraySize(p, i) ) goto no_mem; in sqliteVdbeExec()
2411 sqliteVdbeCleanupCursor(&p->aCsr[i]); in sqliteVdbeExec()
2412 memset(&p->aCsr[i], 0, sizeof(Cursor)); in sqliteVdbeExec()
2413 p->aCsr[i].nullRow = 1; in sqliteVdbeExec()
2416 rc = sqliteBtreeCursor(pX, p2, wrFlag, &p->aCsr[i].pCursor); in sqliteVdbeExec()
2461 int i = pOp->p1; in sqliteVdbeExec() local
2463 assert( i>=0 ); in sqliteVdbeExec()
2464 if( expandCursorArraySize(p, i) ) goto no_mem; in sqliteVdbeExec()
2465 pCx = &p->aCsr[i]; in sqliteVdbeExec()
2499 int i = pOp->p1; in sqliteVdbeExec() local
2501 assert( i>=0 ); in sqliteVdbeExec()
2502 if( expandCursorArraySize(p, i) ) goto no_mem; in sqliteVdbeExec()
2503 pCx = &p->aCsr[i]; in sqliteVdbeExec()
2517 int i = pOp->p1; in sqliteVdbeExec() local
2518 if( i>=0 && i<p->nCursor ){ in sqliteVdbeExec()
2519 sqliteVdbeCleanupCursor(&p->aCsr[i]); in sqliteVdbeExec()
2547 int i = pOp->p1; in sqliteVdbeExec() local
2551 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
2552 pC = &p->aCsr[i]; in sqliteVdbeExec()
2557 int iKey = intToKey(pTos->i); in sqliteVdbeExec()
2566 pC->lastRecno = pTos->i; in sqliteVdbeExec()
2639 int i = pOp->p1; in sqliteVdbeExec() local
2643 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
2644 if( (pC = &p->aCsr[i])->pCursor!=0 ){ in sqliteVdbeExec()
2684 int i = pOp->p1; in sqliteVdbeExec() local
2693 R = pTos->i; in sqliteVdbeExec()
2695 assert( i>=0 && i<=p->nCursor ); in sqliteVdbeExec()
2696 if( (pCrsr = p->aCsr[i].pCursor)!=0 ){ in sqliteVdbeExec()
2712 assert( p->aCsr[i].deferredMoveto==0 ); in sqliteVdbeExec()
2747 pTos->i = v; in sqliteVdbeExec()
2767 int i = pOp->p1; in sqliteVdbeExec() local
2770 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
2771 if( (pCrsr = p->aCsr[i].pCursor)!=0 ){ in sqliteVdbeExec()
2774 iKey = intToKey(pTos->i); in sqliteVdbeExec()
2776 p->aCsr[i].lastRecno = pTos->i; in sqliteVdbeExec()
2777 p->aCsr[i].recnoIsValid = res==0; in sqliteVdbeExec()
2778 p->aCsr[i].nullRow = 0; in sqliteVdbeExec()
2781 p->aCsr[i].recnoIsValid = 0; in sqliteVdbeExec()
2797 int i = pOp->p1; in sqliteVdbeExec() local
2800 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
2801 if( (pC = &p->aCsr[i])->pCursor==0 ){ in sqliteVdbeExec()
2888 pTos->i = v; in sqliteVdbeExec()
2921 int i = pOp->p1; in sqliteVdbeExec() local
2924 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
2925 if( ((pC = &p->aCsr[i])->pCursor!=0 || pC->pseudoTable) ){ in sqliteVdbeExec()
2935 iKey = intToKey(pNos->i); in sqliteVdbeExec()
2938 if( pOp->p2 & OPFLAG_LASTROWID ) db->lastRowid = pNos->i; in sqliteVdbeExec()
2940 if( pC->nextRowidValid && pTos->i>=pC->nextRowid ){ in sqliteVdbeExec()
2995 int i = pOp->p1; in sqliteVdbeExec() local
2997 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
2998 pC = &p->aCsr[i]; in sqliteVdbeExec()
3028 int i = pOp->p1; in sqliteVdbeExec() local
3029 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3030 p->aCsr[i].keyAsData = pOp->p2; in sqliteVdbeExec()
3054 int i = pOp->p1; in sqliteVdbeExec() local
3059 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3060 pC = &p->aCsr[i]; in sqliteVdbeExec()
3120 int i = pOp->p1; in sqliteVdbeExec() local
3128 assert( i<p->nCursor ); in sqliteVdbeExec()
3130 if( i<0 ){ in sqliteVdbeExec()
3131 assert( &pTos[i]>=p->aStack ); in sqliteVdbeExec()
3132 assert( pTos[i].flags & MEM_Str ); in sqliteVdbeExec()
3133 zRec = pTos[i].z; in sqliteVdbeExec()
3134 payloadSize = pTos[i].n; in sqliteVdbeExec()
3135 }else if( (pC = &p->aCsr[i])->pCursor!=0 ){ in sqliteVdbeExec()
3233 int i = pOp->p1; in sqliteVdbeExec() local
3237 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3238 pC = &p->aCsr[i]; in sqliteVdbeExec()
3253 pTos->i = v; in sqliteVdbeExec()
3270 int i = pOp->p1; in sqliteVdbeExec() local
3273 assert( p->aCsr[i].keyAsData ); in sqliteVdbeExec()
3274 assert( !p->aCsr[i].pseudoTable ); in sqliteVdbeExec()
3275 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3277 if( (pCrsr = p->aCsr[i].pCursor)!=0 ){ in sqliteVdbeExec()
3281 sqliteVdbeCursorMoveto(&p->aCsr[i]); in sqliteVdbeExec()
3309 int i = pOp->p1; in sqliteVdbeExec() local
3311 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3312 p->aCsr[i].nullRow = 1; in sqliteVdbeExec()
3313 p->aCsr[i].recnoIsValid = 0; in sqliteVdbeExec()
3326 int i = pOp->p1; in sqliteVdbeExec() local
3330 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3331 pC = &p->aCsr[i]; in sqliteVdbeExec()
3355 int i = pOp->p1; in sqliteVdbeExec() local
3359 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3360 pC = &p->aCsr[i]; in sqliteVdbeExec()
3433 int i = pOp->p1; in sqliteVdbeExec() local
3436 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3438 if( (pCrsr = p->aCsr[i].pCursor)!=0 ){ in sqliteVdbeExec()
3468 assert( p->aCsr[i].deferredMoveto==0 ); in sqliteVdbeExec()
3481 int i = pOp->p1; in sqliteVdbeExec() local
3485 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3486 if( (pCrsr = p->aCsr[i].pCursor)!=0 ){ in sqliteVdbeExec()
3492 assert( p->aCsr[i].deferredMoveto==0 ); in sqliteVdbeExec()
3509 int i = pOp->p1; in sqliteVdbeExec() local
3512 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3514 if( (pCrsr = p->aCsr[i].pCursor)!=0 ){ in sqliteVdbeExec()
3517 assert( p->aCsr[i].deferredMoveto==0 ); in sqliteVdbeExec()
3524 pTos->i = v; in sqliteVdbeExec()
3561 int i= pOp->p1; in sqliteVdbeExec() local
3564 assert( i>=0 && i<p->nCursor ); in sqliteVdbeExec()
3566 if( (pCrsr = p->aCsr[i].pCursor)!=0 ){ in sqliteVdbeExec()
3570 assert( p->aCsr[i].deferredMoveto==0 ); in sqliteVdbeExec()
3599 int i = pOp->p1; in sqliteVdbeExec() local
3607 for(k=0; k<n && i>0; i--){ in sqliteVdbeExec()
3691 pTos->i = pgno; in sqliteVdbeExec()
3723 HashElem *i; in sqliteVdbeExec() local
3732 for(j=0, i=sqliteHashFirst(&pSet->hash); i; i=sqliteHashNext(i), j++){ in sqliteVdbeExec()
3733 toInt((char*)sqliteHashKey(i), &aRoot[j]); in sqliteVdbeExec()
3772 pKeylist->aKey[pKeylist->nUsed++] = pTos->i; in sqliteVdbeExec()
3813 pTos->i = pKeylist->aKey[pKeylist->nRead++]; in sqliteVdbeExec()
3944 int i; in sqliteVdbeExec() local
3951 for(i=0; i<nField; i++, pRec++){ in sqliteVdbeExec()
3961 for(pRec=&pTos[1-nField], i=0; i<nField; i++, pRec++){ in sqliteVdbeExec()
3963 azArg[i] = 0; in sqliteVdbeExec()
3965 azArg[i] = z; in sqliteVdbeExec()
3997 int i, j, k; in sqliteVdbeExec() local
4003 for(i=0; i<nField; i++, pRec++){ in sqliteVdbeExec()
4015 for(pRec=&pTos[1-nField], i=0; i<nField; i++, pRec++){ in sqliteVdbeExec()
4043 int i; in sqliteVdbeExec() local
4046 for(i=0; i<NSORT; i++){ in sqliteVdbeExec()
4047 apSorter[i] = 0; in sqliteVdbeExec()
4053 for(i=0; i<NSORT-1; i++){ in sqliteVdbeExec()
4054 if( apSorter[i]==0 ){ in sqliteVdbeExec()
4055 apSorter[i] = pElem; in sqliteVdbeExec()
4058 pElem = Merge(apSorter[i], pElem); in sqliteVdbeExec()
4059 apSorter[i] = 0; in sqliteVdbeExec()
4062 if( i>=NSORT-1 ){ in sqliteVdbeExec()
4067 for(i=0; i<NSORT; i++){ in sqliteVdbeExec()
4068 pElem = Merge(apSorter[i], pElem); in sqliteVdbeExec()
4163 int n, eol, nField, i, c, nDelim; in sqliteVdbeExec() local
4219 for(i=1; *z!=0 && i<=nField; i++){ in sqliteVdbeExec()
4224 if( i<=nField ) p->azField[i-1] = 0; in sqliteVdbeExec()
4226 if( i<nField ) p->azField[i] = z; in sqliteVdbeExec()
4251 if( i<nField ) p->azField[i] = z; in sqliteVdbeExec()
4257 while( i<nField ){ in sqliteVdbeExec()
4258 p->azField[i++] = 0; in sqliteVdbeExec()
4275 int i = pOp->p1; in sqliteVdbeExec() local
4277 assert( i>=0 && i<p->nField ); in sqliteVdbeExec()
4279 z = p->azField[i]; in sqliteVdbeExec()
4305 int i = pOp->p1; in sqliteVdbeExec() local
4308 if( i>=p->nMem ){ in sqliteVdbeExec()
4311 p->nMem = i + 5; in sqliteVdbeExec()
4328 pMem = &p->aMem[i]; in sqliteVdbeExec()
4359 int i = pOp->p1; in sqliteVdbeExec() local
4360 assert( i>=0 && i<p->nMem ); in sqliteVdbeExec()
4362 memcpy(pTos, &p->aMem[i], sizeof(pTos[0])-NBFS);; in sqliteVdbeExec()
4380 int i = pOp->p1; in sqliteVdbeExec() local
4382 assert( i>=0 && i<p->nMem ); in sqliteVdbeExec()
4383 pMem = &p->aMem[i]; in sqliteVdbeExec()
4385 pMem->i++; in sqliteVdbeExec()
4386 if( pOp->p2>0 && pMem->i>0 ){ in sqliteVdbeExec()
4412 int i = pOp->p2; in sqliteVdbeExec() local
4413 assert( i>=0 && i<p->agg.nMem ); in sqliteVdbeExec()
4414 p->agg.apFunc[i] = (FuncDef*)pOp->p3; in sqliteVdbeExec()
4431 int i; in sqliteVdbeExec() local
4440 for(i=0; i<n; i++, pRec++){ in sqliteVdbeExec()
4442 azArgv[i] = 0; in sqliteVdbeExec()
4445 azArgv[i] = pRec->z; in sqliteVdbeExec()
4448 i = pTos->i; in sqliteVdbeExec()
4449 assert( i>=0 && i<p->agg.nMem ); in sqliteVdbeExec()
4451 pMem = &p->agg.pCurrent->aMem[i]; in sqliteVdbeExec()
4454 ctx.cnt = ++pMem->i; in sqliteVdbeExec()
4511 int i = pOp->p2; in sqliteVdbeExec() local
4514 assert( i>=0 && i<p->agg.nMem ); in sqliteVdbeExec()
4516 pMem = &pFocus->aMem[i]; in sqliteVdbeExec()
4538 int i = pOp->p2; in sqliteVdbeExec() local
4540 assert( i>=0 && i<p->agg.nMem ); in sqliteVdbeExec()
4542 pMem = &pFocus->aMem[i]; in sqliteVdbeExec()
4577 int i; in sqliteVdbeExec() local
4582 for(i=0; i<p->agg.nMem; i++){ in sqliteVdbeExec()
4584 if( p->agg.apFunc[i]==0 ) continue; in sqliteVdbeExec()
4585 if( p->agg.apFunc[i]->xFinalize==0 ) continue; in sqliteVdbeExec()
4587 ctx.s.z = aMem[i].zShort; in sqliteVdbeExec()
4588 ctx.pAgg = (void*)aMem[i].z; in sqliteVdbeExec()
4589 freeCtx = aMem[i].z && aMem[i].z!=aMem[i].zShort; in sqliteVdbeExec()
4590 ctx.cnt = aMem[i].i; in sqliteVdbeExec()
4592 ctx.pFunc = p->agg.apFunc[i]; in sqliteVdbeExec()
4593 (*p->agg.apFunc[i]->xFinalize)(&ctx); in sqliteVdbeExec()
4595 sqliteFree( aMem[i].z ); in sqliteVdbeExec()
4597 aMem[i] = ctx.s; in sqliteVdbeExec()
4598 if( aMem[i].flags & MEM_Short ){ in sqliteVdbeExec()
4599 aMem[i].z = aMem[i].zShort; in sqliteVdbeExec()
4613 int i = pOp->p1; in sqliteVdbeExec() local
4614 if( p->nSet<=i ){ in sqliteVdbeExec()
4616 Set *aSet = sqliteRealloc(p->aSet, (i+1)*sizeof(p->aSet[0]) ); in sqliteVdbeExec()
4619 for(k=p->nSet; k<=i; k++){ in sqliteVdbeExec()
4622 p->nSet = i+1; in sqliteVdbeExec()
4625 sqliteHashInsert(&p->aSet[i].hash, pOp->p3, strlen(pOp->p3)+1, p); in sqliteVdbeExec()
4629 sqliteHashInsert(&p->aSet[i].hash, pTos->z, pTos->n, p); in sqliteVdbeExec()
4644 int i = pOp->p1; in sqliteVdbeExec() local
4647 if( i>=0 && i<p->nSet && sqliteHashFind(&p->aSet[i].hash, pTos->z, pTos->n)){ in sqliteVdbeExec()
4662 int i = pOp->p1; in sqliteVdbeExec() local
4665 if( i<0 || i>=p->nSet || in sqliteVdbeExec()
4666 sqliteHashFind(&p->aSet[i].hash, pTos->z, pTos->n)==0 ){ in sqliteVdbeExec()
4739 pTos->i = depth; in sqliteVdbeExec()
4754 goal = pTos->i; in sqliteVdbeExec()
4819 int i; in sqliteVdbeExec() local
4821 for(i=0; i>-5 && &pTos[i]>=p->aStack; i--){ in sqliteVdbeExec()
4822 if( pTos[i].flags & MEM_Null ){ in sqliteVdbeExec()
4824 }else if( (pTos[i].flags & (MEM_Int|MEM_Str))==(MEM_Int|MEM_Str) ){ in sqliteVdbeExec()
4825 fprintf(p->trace, " si:%d", pTos[i].i); in sqliteVdbeExec()
4826 }else if( pTos[i].flags & MEM_Int ){ in sqliteVdbeExec()
4827 fprintf(p->trace, " i:%d", pTos[i].i); in sqliteVdbeExec()
4828 }else if( pTos[i].flags & MEM_Real ){ in sqliteVdbeExec()
4829 fprintf(p->trace, " r:%g", pTos[i].r); in sqliteVdbeExec()
4830 }else if( pTos[i].flags & MEM_Str ){ in sqliteVdbeExec()
4834 if( pTos[i].flags & MEM_Dyn ){ in sqliteVdbeExec()
4836 assert( (pTos[i].flags & (MEM_Static|MEM_Ephem))==0 ); in sqliteVdbeExec()
4837 }else if( pTos[i].flags & MEM_Static ){ in sqliteVdbeExec()
4839 assert( (pTos[i].flags & (MEM_Dyn|MEM_Ephem))==0 ); in sqliteVdbeExec()
4840 }else if( pTos[i].flags & MEM_Ephem ){ in sqliteVdbeExec()
4842 assert( (pTos[i].flags & (MEM_Static|MEM_Dyn))==0 ); in sqliteVdbeExec()
4848 for(j=0; j<20 && j<pTos[i].n; j++){ in sqliteVdbeExec()
4849 int c = pTos[i].z[j]; in sqliteVdbeExec()
4850 if( c==0 && j==pTos[i].n-1 ) break; in sqliteVdbeExec()