Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c16484 VdbeOp *aOp; /* Array of opcodes for sub-program */ member
16846 SQLITE_PRIVATE VdbeOp *sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp,int iLineno);
23204 Op *aOp; /* Program instructions for parent frame */ member
23484 Op *aOp; /* Space to hold the virtual machine's program */ member
53782 SQLITE_PRIVATE int sqlite3BitvecBuiltinTest(int sz, int *aOp){
53802 while( (op = aOp[pc])!=0 ){
53808 i = aOp[pc+2] - 1;
53809 aOp[pc+2] += aOp[pc+3];
53820 if( (--aOp[pc+1]) > 0 ) nx = 0;
84400 memset(&p->aOp, 0, sizeof(Vdbe)-offsetof(Vdbe,aOp));
[all …]
H A Dshell.c6351 char *aOp; /* Operators for the virtual machine */ member
6471 switch( pRe->aOp[x] ){ in re_match()
6539 if( pRe->aOp[x+j]==RE_OP_CC_VALUE ){ in re_match()
6553 if( pRe->aOp[x]==RE_OP_CC_EXC ) hit = !hit; in re_match()
6562 while( pRe->aOp[x]==RE_OP_GOTO ) x += pRe->aArg[x]; in re_match()
6563 if( pRe->aOp[x]==RE_OP_ACCEPT ){ rc = 1; break; } in re_match()
6573 char *aOp; in re_resize() local
6575 aOp = sqlite3_realloc64(p->aOp, N*sizeof(p->aOp[0])); in re_resize()
6576 if( aOp==0 ) return 1; in re_resize()
6577 p->aOp = aOp; in re_resize()
[all …]