Searched refs:aOp (Results 1 – 2 of 2) sorted by relevance
16531 VdbeOp *aOp; /* Array of opcodes for sub-program */ member16894 SQLITE_PRIVATE VdbeOp *sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp,int iLineno);23292 Op *aOp; /* Program instructions for parent frame */ member23572 Op *aOp; /* Space to hold the virtual machine's program */ member54141 SQLITE_PRIVATE int sqlite3BitvecBuiltinTest(int sz, int *aOp){54161 while( (op = aOp[pc])!=0 ){54167 i = aOp[pc+2] - 1;54168 aOp[pc+2] += aOp[pc+3];54179 if( (--aOp[pc+1]) > 0 ) nx = 0;84867 memset(&p->aOp, 0, sizeof(Vdbe)-offsetof(Vdbe,aOp));[all …]
6421 char *aOp; /* Operators for the virtual machine */ member6541 switch( pRe->aOp[x] ){ in re_match()6609 if( pRe->aOp[x+j]==RE_OP_CC_VALUE ){ in re_match()6623 if( pRe->aOp[x]==RE_OP_CC_EXC ) hit = !hit; in re_match()6632 while( pRe->aOp[x]==RE_OP_GOTO ) x += pRe->aArg[x]; in re_match()6633 if( pRe->aOp[x]==RE_OP_ACCEPT ){ rc = 1; break; } in re_match()6643 char *aOp; in re_resize() local6645 aOp = sqlite3_realloc64(p->aOp, N*sizeof(p->aOp[0])); in re_resize()6646 if( aOp==0 ) return 1; in re_resize()6647 p->aOp = aOp; in re_resize()[all …]