| /sqlite-3.40.0/ext/misc/ |
| H A D | regexp.c | 274 switch( pRe->aOp[x] ){ in re_match() 342 if( pRe->aOp[x+j]==RE_OP_CC_VALUE ){ in re_match() 376 char *aOp; in re_resize() local 378 aOp = sqlite3_realloc64(p->aOp, N*sizeof(p->aOp[0])); in re_resize() 379 if( aOp==0 ) return 1; in re_resize() 380 p->aOp = aOp; in re_resize() 395 p->aOp[i] = p->aOp[i-1]; in re_insert() 399 p->aOp[iBefore] = (char)op; in re_insert() 415 memcpy(&p->aOp[p->nState], &p->aOp[iStart], N*sizeof(p->aOp[0])); in re_copy() 661 sqlite3_free(pRe->aOp); in re_free() [all …]
|
| /sqlite-3.40.0/src/ |
| H A D | vdbeaux.c | 30 memset(&p->aOp, 0, sizeof(Vdbe)-offsetof(Vdbe,aOp)); in sqlite3VdbeCreate() 644 Op *aOp; in opIterNext() local 650 aOp = v->aOp; in opIterNext() 653 aOp = p->apSub[p->iSub-1]->aOp; in opIterNext() 1042 VdbeOp *aOp = p->aOp; in sqlite3VdbeTakeOpArray() local 1050 p->aOp = 0; in sqlite3VdbeTakeOpArray() 1281 if( aOp ){ in vdbeFreeOpArray() 2140 aOp = p->aOp; in sqlite3VdbeNextOpcode() 2152 aOp = apSub[j]->aOp; in sqlite3VdbeNextOpcode() 2657 v->aOp = pFrame->aOp; in sqlite3VdbeFrameRestore() [all …]
|
| H A D | vdbevtab.c | 39 Op *aOp; /* Operand array */ member 172 &pCur->aOp); in bytecodevtabNext() 175 pCur->aOp = 0; in bytecodevtabNext() 186 return pCur->aOp==0; in bytecodevtabEof() 200 Op *pOp = pCur->aOp + pCur->iAddr; in bytecodevtabColumn() 269 Op *aOp = pCur->aOp; in bytecodevtabColumn() local 270 assert( aOp[0].opcode==OP_Init ); in bytecodevtabColumn() 271 assert( aOp[0].p4.z==0 || strncmp(aOp[0].p4.z,"-" "- ",3)==0 ); in bytecodevtabColumn() 274 }else if( aOp[0].p4.z!=0 ){ in bytecodevtabColumn() 275 sqlite3_result_text(ctx, aOp[0].p4.z+3, -1, SQLITE_STATIC); in bytecodevtabColumn()
|
| H A D | vdbeblob.c | 277 VdbeOp *aOp; in sqlite3_blob_open() local 290 assert( aOp!=0 ); in sqlite3_blob_open() 293 aOp[0].opcode = OP_Noop; in sqlite3_blob_open() 295 aOp[0].p1 = iDb; in sqlite3_blob_open() 296 aOp[0].p2 = pTab->tnum; in sqlite3_blob_open() 297 aOp[0].p3 = wrFlag; in sqlite3_blob_open() 306 aOp[1].p2 = pTab->tnum; in sqlite3_blob_open() 307 aOp[1].p3 = iDb; in sqlite3_blob_open() 316 aOp[1].p4type = P4_INT32; in sqlite3_blob_open() 317 aOp[1].p4.i = pTab->nCol+1; in sqlite3_blob_open() [all …]
|
| H A D | pragma.c | 522 VdbeOp *aOp; in sqlite3Pragma() local 529 aOp[0].p1 = iDb; in sqlite3Pragma() 530 aOp[1].p1 = iDb; in sqlite3Pragma() 787 VdbeOp *aOp; in sqlite3Pragma() local 2037 VdbeOp *aOp; in sqlite3Pragma() local 2040 if( aOp ){ in sqlite3Pragma() 2164 VdbeOp *aOp; in sqlite3Pragma() local 2168 aOp[0].p1 = iDb; in sqlite3Pragma() 2169 aOp[1].p1 = iDb; in sqlite3Pragma() 2172 aOp[1].p5 = 1; in sqlite3Pragma() [all …]
|
| H A D | test_loadext.c | 46 } aOp[] = { in statusFunc() local 54 int nOp = sizeof(aOp)/sizeof(aOp[0]); in statusFunc() 57 if( strcmp(aOp[i].zName, zName)==0 ){ in statusFunc() 58 op = aOp[i].op; in statusFunc()
|
| H A D | vdbe.c | 718 Op *aOp = p->aOp; /* Copy of p->aOp */ in sqlite3VdbeExec() local 803 assert( pOp>=aOp && pOp<&aOp[p->nOp]); in sqlite3VdbeExec() 1170 aOp = p->aOp; in sqlite3VdbeExec() 1172 pOp = &aOp[pcx]; in sqlite3VdbeExec() 2270 assert( aOp[iAddr].opcode==OP_Lt || aOp[iAddr].opcode==OP_Gt ); in sqlite3VdbeExec() 3071 pOp = &aOp[aOp[0].p3-1]; in sqlite3VdbeExec() 7159 pFrame->aOp = p->aOp; in sqlite3VdbeExec() 7199 p->aOp = aOp = pProgram->aOp; in sqlite3VdbeExec() 7215 pOp = &aOp[-1]; in sqlite3VdbeExec() 8617 if( p->aOp[i].opcode==OP_Once ) p->aOp[i].p1 = 0; in sqlite3VdbeExec() [all …]
|
| H A D | bitvec.c | 337 int sqlite3BitvecBuiltinTest(int sz, int *aOp){ in sqlite3BitvecBuiltinTest() argument 357 while( (op = aOp[pc])!=0 ){ in sqlite3BitvecBuiltinTest() 363 i = aOp[pc+2] - 1; in sqlite3BitvecBuiltinTest() 364 aOp[pc+2] += aOp[pc+3]; in sqlite3BitvecBuiltinTest() 375 if( (--aOp[pc+1]) > 0 ) nx = 0; in sqlite3BitvecBuiltinTest()
|
| H A D | insert.c | 482 VdbeOp *aOp; in sqlite3AutoincrementBegin() local 489 if( aOp==0 ) break; in sqlite3AutoincrementBegin() 490 aOp[0].p2 = memId; in sqlite3AutoincrementBegin() 492 aOp[2].p3 = memId; in sqlite3AutoincrementBegin() 494 aOp[3].p3 = memId; in sqlite3AutoincrementBegin() 497 aOp[5].p3 = memId; in sqlite3AutoincrementBegin() 498 aOp[6].p1 = memId; in sqlite3AutoincrementBegin() 500 aOp[7].p1 = memId; in sqlite3AutoincrementBegin() 542 VdbeOp *aOp; in autoIncrementEnd() local 557 aOp[2].p3 = iRec; in autoIncrementEnd() [all …]
|
| H A D | test_malloc.c | 1299 } aOp[] = { in test_status() local 1317 for(i=0; i<ArraySize(aOp); i++){ in test_status() 1318 if( strcmp(aOp[i].zName, zOpName)==0 ){ in test_status() 1319 op = aOp[i].op; in test_status() 1323 if( i>=ArraySize(aOp) ){ in test_status() 1358 } aOp[] = { in test_db_status() local 1382 for(i=0; i<ArraySize(aOp); i++){ in test_db_status() 1383 if( strcmp(aOp[i].zName, zOpName)==0 ){ in test_db_status() 1384 op = aOp[i].op; in test_db_status() 1388 if( i>=ArraySize(aOp) ){ in test_db_status()
|
| H A D | vdbe.h | 86 VdbeOp *aOp; /* Array of opcodes for sub-program */ member 206 VdbeOp *sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp,int iLineno);
|
| H A D | vdbeInt.h | 173 Op *aOp; /* Program instructions for parent frame */ member 445 Op *aOp; /* Space to hold the virtual machine's program */ member
|
| H A D | whereexpr.c | 362 } aOp[] = { in isAuxiliaryVtabOperator() local 388 for(i=0; i<ArraySize(aOp); i++){ in isAuxiliaryVtabOperator() 390 if( sqlite3StrICmp(pExpr->u.zToken, aOp[i].zOp)==0 ){ in isAuxiliaryVtabOperator() 391 *peOp2 = aOp[i].eOp2; in isAuxiliaryVtabOperator()
|
| H A D | vdbeapi.c | 2143 *(const char**)pOut = p->aOp[ pScan->addrExplain ].p4.z; in sqlite3_stmt_scanstatus() 2151 *(int*)pOut = p->aOp[ pScan->addrExplain ].p1; in sqlite3_stmt_scanstatus()
|
| H A D | test1.c | 2159 } aOp[] = { in test_stmt_status() local 2174 for(i=0; i<ArraySize(aOp); i++){ in test_stmt_status() 2175 if( strcmp(aOp[i].zName, zOpName)==0 ){ in test_stmt_status() 2176 op = aOp[i].op; in test_stmt_status() 2180 if( i>=ArraySize(aOp) ){ in test_stmt_status()
|
| H A D | window.c | 1483 static int aOp[] = { OP_Ge, OP_Ge, OP_Gt, OP_Ge, OP_Ge }; in windowCheckValue() local 1505 sqlite3VdbeAddOp3(v, aOp[eCond], regZero, sqlite3VdbeCurrentAddr(v)+2, reg); in windowCheckValue()
|
| H A D | trigger.c | 1241 pProgram->aOp = sqlite3VdbeTakeOpArray(v, &pProgram->nOp, &pTop->nMaxArg); in codeRowTrigger()
|
| H A D | func.c | 30 pOp = &context->pVdbe->aOp[context->iOp-1]; in sqlite3GetFuncCollSeq()
|
| /sqlite-3.40.0/ext/recover/ |
| H A D | test_recover.c | 116 const char *aOp[] = { in testRecoverCmd() local 127 if( Tcl_GetIndexFromObj(interp, objv[2], aOp, "option", 0, &iOp) ){ in testRecoverCmd()
|