Lines Matching defs:iStart
6677 /* Make a copy of N opcodes starting at iStart onto the end of the RE
6680 static void re_copy(ReCompiled *p, int iStart, int N){
6682 memcpy(&p->aOp[p->nState], &p->aOp[iStart], N*sizeof(p->aOp[0]));
6683 memcpy(&p->aArg[p->nState], &p->aArg[iStart], N*sizeof(p->aArg[0]));
6759 int iStart, iEnd, iGoto;
6760 iStart = p->nState;
6765 re_insert(p, iStart, RE_OP_FORK, iEnd + 2 - iStart);
6781 int iStart;
6785 iStart = p->nState;
6917 iPrev = iStart;
14613 int iStart = 0;
14630 iStart = iOff;
14641 nRet = (iEnd - iStart);
14642 zRet = &z[iStart];
14645 iStart = iOff+1;
14646 while( intckIsSpace(z[iStart]) ) iStart++;
14666 /* iStart is now the byte offset of 1 byte passed the final ')' in the
23618 static char **readline_completion(const char *zText, int iStart, int iEnd){
23619 (void)iStart;
23631 i64 i, iStart;
23640 iStart = i+1;
23641 memcpy(zBuf, zLine, iStart);
23644 &zLine[iStart], zLine);
23652 if( iStart+nCompletion < (i64)sizeof(zBuf)-1 && zCompletion ){
23653 memcpy(zBuf+iStart, zCompletion, nCompletion+1);