| /sqlite-3.40.0/src/ |
| H A D | vdbe.c | 930 if( pOp->p5 ){ in sqlite3VdbeExec() 1179 if( pOp->p5 ){ in sqlite3VdbeExec() 3327 if( pOp->p5 ){ in sqlite3VdbeExec() 3943 && pOp->p5 in sqlite3VdbeExec() 4153 assert( pOp->p5==0 || pOp->p5==OPFLAG_SEEKEQ ); in sqlite3VdbeExec() 4878 if( pOp->p5==0 ){ in sqlite3VdbeExec() 5681 && pOp->p5==0 in sqlite3VdbeExec() 7112 if( pOp->p5 ){ in sqlite3VdbeExec() 7460 n = pOp->p5; in sqlite3VdbeExec() 8126 assert( pOp->p5==OPFLAG_NOCHNG || pOp->p5==0 ); in sqlite3VdbeExec() [all …]
|
| H A D | vdbeaux.c | 256 pOp->p5 = 0; in sqlite3VdbeAddOp3() 487 sqlite3VdbeChangeP5(p, p5); in sqlite3VdbeAddParseSchemaOp() 1086 pOut->p5 = 0; in sqlite3VdbeAddOpList() 1153 void sqlite3VdbeChangeP5(Vdbe *p, u16 p5){ in sqlite3VdbeChangeP5() argument 1155 if( p->nOp>0 ) p->aOp[p->nOp-1].p5 = p5; in sqlite3VdbeChangeP5() 1166 pOp->p5 |= OPFLAG_TYPEOFARG; in sqlite3VdbeTypeofColumn() 1568 return pOp->p5; in translateP() 1965 zP4 ? zP4 : "", pOp->p5, in sqlite3VdbePrintOp() 2304 sqlite3VdbeMemSetInt64(pMem+6, pOp->p5); in sqlite3VdbeList() 5200 if( pOp->p5 & NC_IsCheck ){ in sqlite3NotPureFunc() [all …]
|
| H A D | expr.c | 391 int p5; in codeCompare() local 404 sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); in codeCompare() 646 assert( p5==0 || pExpr->op!=op ); in codeVectorCompare() 647 assert( p5==SQLITE_NULLEQ || pExpr->op==op ); in codeVectorCompare() 680 if( p5==SQLITE_NULLEQ ){ in codeVectorCompare() 3846 if( p5 ){ in sqlite3ExprCodeGetColumn() 3848 if( pOp->opcode==OP_Column ) pOp->p5 = p5; in sqlite3ExprCodeGetColumn() 4106 int p5 = 0; in sqlite3ExprCodeTarget() local 4311 p5 = SQLITE_NULLEQ; in sqlite3ExprCodeTarget() 4327 sqlite3VdbeCurrentAddr(v)+2, p5, in sqlite3ExprCodeTarget() [all …]
|
| H A D | delete.c | 834 u8 p5 = 0; in sqlite3GenerateRowDelete() local 846 if( eMode==ONEPASS_MULTI ) p5 |= OPFLAG_SAVEPOSITION; in sqlite3GenerateRowDelete() 847 sqlite3VdbeChangeP5(v, p5); in sqlite3GenerateRowDelete()
|
| H A D | insert.c | 495 aOp[3].p5 = SQLITE_JUMPIFNULL; in sqlite3AutoincrementBegin() 560 aOp[3].p5 = OPFLAG_APPEND; in autoIncrementEnd() 2426 sqlite3VdbeChangeP5(v, x.p5); in sqlite3GenerateConstraintChecks() 2644 u8 p5, /* P5 value for OP_Open* opcodes (except on WITHOUT ROWID) */ in sqlite3OpenTableAndIndices() argument 2657 assert( op==OP_OpenWrite || p5==0 ); in sqlite3OpenTableAndIndices() 2682 p5 = 0; in sqlite3OpenTableAndIndices() 2687 sqlite3VdbeChangeP5(v, p5); in sqlite3OpenTableAndIndices()
|
| H A D | vdbe.h | 44 u16 p5; /* Fifth parameter is an unsigned 16-bit integer */ member
|
| H A D | wherecode.c | 901 pOp->p5 = (u8)(pLevel->iLikeRepCntr&1); /* ASC or DESC */ in whereLikeOptimizationStringFixup() 1658 assert( pLevel->p5==0 ); in sqlite3WhereCodeOneLoopStart() 2076 pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP; in sqlite3WhereCodeOneLoopStart() 2078 assert( pLevel->p5==0 ); in sqlite3WhereCodeOneLoopStart() 2435 pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP; in sqlite3WhereCodeOneLoopStart()
|
| H A D | whereInt.h | 92 u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */ member
|
| H A D | vdbevtab.c | 266 sqlite3_result_int(ctx, pOp->p5); in bytecodevtabColumn()
|
| H A D | alter.c | 111 static void renameReloadSchema(Parse *pParse, int iDb, u16 p5){ in renameReloadSchema() argument 115 sqlite3VdbeAddParseSchemaOp(pParse->pVdbe, iDb, 0, p5); in renameReloadSchema() 116 if( iDb!=1 ) sqlite3VdbeAddParseSchemaOp(pParse->pVdbe, 1, 0, p5); in renameReloadSchema()
|
| H A D | pragma.c | 2172 aOp[1].p5 = 1; in sqlite3Pragma()
|
| H A D | where.c | 685 pOp->p5 = 2; /* Cause the MEM_Subtype flag to be cleared */ in translateColumnToCopy() 6312 sqlite3VdbeChangeP5(v, pLevel->p5); in sqlite3WhereEnd()
|
| H A D | shell.c.in | 3097 "addr", "opcode", "p1", "p2", "p3", "p4", "p5", "comment" };
|
| /sqlite-3.40.0/test/ |
| H A D | fkey5.test | 40 CREATE TABLE p5(a INTEGER PRIMARY KEY, b, c, UNIQUE(b,c)); 41 INSERT INTO p5 VALUES(1,'Alpha','abc'),(2,'beta','def'); 60 CREATE TABLE c15(x, y, FOREIGN KEY(x,y) REFERENCES p5(b,c)); 61 CREATE TABLE c16(x, y, FOREIGN KEY(x,y) REFERENCES p5(c,b)); 65 FOREIGN KEY(x,y) REFERENCES p5(b,c)); 67 FOREIGN KEY(x,y) REFERENCES p5(c,b)); 312 } {c19 1 p5 0} 325 } {c20 1 p5 0}
|
| H A D | distinct.test | 53 if {$p5!=8 && $p5!=0} { error "p5 = $p5" } 54 if {$p5==8} {
|
| H A D | fordelete.test | 51 if {$R(p5) & 0x08} { 63 set idxdelete [expr {("0x$R(p5)" & 0x04) ? 1 : 0}]
|
| H A D | having.test | 45 db eval "explain $sql1" { lappend r1 $opcode $p1 $p2 $p3 $p4 $p5} 46 db eval "explain $sql2" { lappend r2 $opcode $p1 $p2 $p3 $p4 $p5}
|
| H A D | cursorhint.test | 53 lappend res $x(p5)
|
| H A D | tester.tcl | 1451 $addr $opcode $p1 $p2 $p3 $p4 $p5 $comment 1545 $addr $I $col $opcode $D $p1 $p2 $p3 $p4 $p5 $comment
|
| H A D | e_fkey.test | 773 CREATE TABLE p5(a PRIMARY KEY, b COLLATE nocase); 774 CREATE UNIQUE INDEX p5i ON p5(b COLLATE binary); 775 CREATE TABLE c5(c REFERENCES p5(b), d); 790 6 c5 p5 "foreign key mismatch - \"c5\" referencing \"p5\""
|
| /sqlite-3.40.0/ |
| H A D | config.sub | 1053 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
|
| /sqlite-3.40.0/ext/fts5/test/ |
| H A D | fts5corrupt3.test | 12414 | 1328: e4 e7 70 35 0f a9 70 0d 50 da 5c c2 17 9b c6 3b ..p5..p.P......;
|