Lines Matching refs:aArg
155 int *aArg; /* Arguments to each operator */ member
276 if( pRe->aArg[x]==c ) re_add_state(pNext, x+1); in re_match()
321 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
326 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
339 int n = pRe->aArg[x]; in re_match()
343 if( pRe->aArg[x+j]==c ){ in re_match()
348 if( pRe->aArg[x+j]<=c && pRe->aArg[x+j+1]>=c ){ in re_match()
365 while( pRe->aOp[x]==RE_OP_GOTO ) x += pRe->aArg[x]; in re_match()
377 int *aArg; in re_resize() local
381 aArg = sqlite3_realloc64(p->aArg, N*sizeof(p->aArg[0])); in re_resize()
382 if( aArg==0 ) return 1; in re_resize()
383 p->aArg = aArg; in re_resize()
396 p->aArg[i] = p->aArg[i-1]; in re_insert()
400 p->aArg[iBefore] = arg; in re_insert()
416 memcpy(&p->aArg[p->nState], &p->aArg[iStart], N*sizeof(p->aArg[0])); in re_copy()
503 p->aArg[iGoto] = p->nState - iGoto; in re_subcompile_re()
622 p->aArg[iFirst] = p->nState - iFirst; in re_subcompile_string()
662 sqlite3_free(pRe->aArg); in re_free()
720 unsigned x = pRe->aArg[i]; in re_compile()
830 ReOpName[(unsigned char)pRe->aOp[i]], pRe->aArg[i]); in re_bytecode_func()