Lines Matching refs:aArg
6422 int *aArg; /* Arguments to each operator */ member
6543 if( pRe->aArg[x]==c ) re_add_state(pNext, x+1); in re_match()
6588 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
6593 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
6606 int n = pRe->aArg[x]; in re_match()
6610 if( pRe->aArg[x+j]==c ){ in re_match()
6615 if( pRe->aArg[x+j]<=c && pRe->aArg[x+j+1]>=c ){ in re_match()
6632 while( pRe->aOp[x]==RE_OP_GOTO ) x += pRe->aArg[x]; in re_match()
6644 int *aArg; in re_resize() local
6648 aArg = sqlite3_realloc64(p->aArg, N*sizeof(p->aArg[0])); in re_resize()
6649 if( aArg==0 ) return 1; in re_resize()
6650 p->aArg = aArg; in re_resize()
6663 p->aArg[i] = p->aArg[i-1]; in re_insert()
6667 p->aArg[iBefore] = arg; in re_insert()
6683 memcpy(&p->aArg[p->nState], &p->aArg[iStart], N*sizeof(p->aArg[0])); in re_copy()
6770 p->aArg[iGoto] = p->nState - iGoto; in re_subcompile_re()
6889 if( p->nState>iFirst ) p->aArg[iFirst] = p->nState - iFirst; in re_subcompile_string()
6929 sqlite3_free(pRe->aArg); in re_free()
6987 unsigned x = pRe->aArg[i]; in re_compile()
7098 ReOpName[(unsigned char)pRe->aOp[i]], pRe->aArg[i]); in re_bytecode_func()