Home
last modified time | relevance | path

Searched refs:aOp (Results 1 – 2 of 2) sorted by relevance

/src/contrib/sqlite3/
H A Dsqlite3.c16963 VdbeOp *aOp; /* Array of opcodes for sub-program */ member
17327 SQLITE_PRIVATE VdbeOp *sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp,int iLineno);
23779 Op *aOp; /* Program instructions for parent frame */ member
24063 Op *aOp; /* Space to hold the virtual machine's program */ member
55092 SQLITE_PRIVATE int sqlite3BitvecBuiltinTest(int sz, int *aOp){
55112 while( (op = aOp[pc])!=0 ){
55118 i = aOp[pc+2] - 1;
55119 aOp[pc+2] += aOp[pc+3];
55130 if( (--aOp[pc+1]) > 0 ) nx = 0;
85925 memset(&p->aOp, 0, sizeof(Vdbe)-offsetof(Vdbe,aOp));
[all …]
H A Dshell.c7203 char *aOp; /* Operators for the virtual machine */ member
7323 switch( pRe->aOp[x] ){ in re_match()
7391 if( pRe->aOp[x+j]==RE_OP_CC_VALUE ){ in re_match()
7405 if( pRe->aOp[x]==RE_OP_CC_EXC ) hit = !hit; in re_match()
7414 while( pRe->aOp[x]==RE_OP_GOTO ) x += pRe->aArg[x]; in re_match()
7415 if( pRe->aOp[x]==RE_OP_ACCEPT ){ rc = 1; break; } in re_match()
7425 char *aOp; in re_resize() local
7427 aOp = sqlite3_realloc64(p->aOp, N*sizeof(p->aOp[0])); in re_resize()
7428 if( aOp==0 ) return 1; in re_resize()
7429 p->aOp = aOp; in re_resize()
[all …]