Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c17576 VdbeOp *aOp; /* Array of opcodes for sub-program */ member
17944 SQLITE_PRIVATE VdbeOp *sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp,int iLineno);
24440 Op *aOp; /* Program instructions for parent frame */ member
24724 Op *aOp; /* Space to hold the virtual machine's program */ member
56593 SQLITE_PRIVATE int sqlite3BitvecBuiltinTest(int sz, int *aOp){ argument
56618 while( (op = aOp[pc])!=0 ){
56642 i = aOp[pc+2] - 1;
56643 aOp[pc+2] += aOp[pc+3];
56654 if( (--aOp[pc+1]) > 0 ) nx = 0;
87752 memset(&p->aOp, 0, sizeof(Vdbe)-offsetof(Vdbe,aOp));
[all …]
H A Dshell.c8889 char *aOp; /* Operators for the virtual machine */ member
9010 switch( pRe->aOp[x] ){ in re_match()
9078 if( pRe->aOp[x+j]==RE_OP_CC_VALUE ){ in re_match()
9092 if( pRe->aOp[x]==RE_OP_CC_EXC ) hit = !hit; in re_match()
9101 while( pRe->aOp[x]==RE_OP_GOTO ) x += pRe->aArg[x]; in re_match()
9102 if( pRe->aOp[x]==RE_OP_ACCEPT ){ rc = 1; break; } in re_match()
9112 char *aOp; in re_resize() local
9115 aOp = sqlite3_realloc64(p->aOp, N*sizeof(p->aOp[0])); in re_resize()
9116 if( aOp==0 ){ p->zErr = "out of memory"; return 1; } in re_resize()
9117 p->aOp = aOp; in re_resize()
[all …]