Home
last modified time | relevance | path

Searched refs:addr (Results 1 – 18 of 18) sorted by relevance

/sqlite-3.40.0/src/
H A Dvdbe.h226 void sqlite3VdbeChangeOpcode(Vdbe*, int addr, u8);
227 void sqlite3VdbeChangeP1(Vdbe*, int addr, int P1);
228 void sqlite3VdbeChangeP2(Vdbe*, int addr, int P2);
229 void sqlite3VdbeChangeP3(Vdbe*, int addr, int P3);
232 void sqlite3VdbeJumpHere(Vdbe*, int addr);
233 void sqlite3VdbeJumpHereOrPopInst(Vdbe*, int addr);
234 int sqlite3VdbeChangeToNoop(Vdbe*, int addr);
237 void sqlite3VdbeReleaseRegisters(Parse*,int addr, int n, u32 mask, int);
241 void sqlite3VdbeChangeP4(Vdbe*, int addr, const char *zP4, int N);
H A Dvdbeaux.c348 return addr; in sqlite3VdbeAddOp4()
372 int addr; in sqlite3VdbeAddFunctionCall() local
392 return addr; in sqlite3VdbeAddFunctionCall()
509 return addr; in sqlite3VdbeAddOp4Int()
1138 assert( addr>=0 ); in sqlite3VdbeChangeOpcode()
1142 assert( addr>=0 ); in sqlite3VdbeChangeP1()
1150 assert( addr>=0 ); in sqlite3VdbeChangeP3()
1318 assert( addr>=0 && addr<p->nOp ); in sqlite3VdbeChangeToNoop()
1319 pOp = &p->aOp[addr]; in sqlite3VdbeChangeToNoop()
1423 if( addr<0 ){ in sqlite3VdbeChangeP4()
[all …]
H A Dwindow.c1858 int addr; in windowFullScan() local
1873 addr = sqlite3VdbeCurrentAddr(v)+1; in windowFullScan()
1874 sqlite3VdbeAddOp3(v, OP_Jump, addr, lblNext, addr); in windowFullScan()
2053 int addr /* Jump here */ in windowIfNewPeer() argument
2067 sqlite3VdbeAddOp2(v, OP_Goto, 0, addr); in windowIfNewPeer()
2172 sqlite3VdbeJumpHere(v, addr); in windowCodeRangeTest()
2907 int addr; in sqlite3WindowCodeStep() local
2916 sqlite3VdbeAddOp3(v, OP_Jump, addr+2, addr+4, addr+2); in sqlite3WindowCodeStep()
3006 int addr = 0; in sqlite3WindowCodeStep() local
3011 addr = sqlite3VdbeCurrentAddr(v); in sqlite3WindowCodeStep()
[all …]
H A Dpragma.c358 int addr; in integrityCheckResultRow() local
360 addr = sqlite3VdbeAddOp3(v, OP_IfPos, 1, sqlite3VdbeCurrentAddr(v)+2, 1); in integrityCheckResultRow()
363 return addr; in integrityCheckResultRow()
811 int iLimit = 0, addr; in sqlite3Pragma() local
817 addr = sqlite3VdbeAddOp1(v, OP_IncrVacuum, iDb); VdbeCoverage(v); in sqlite3Pragma()
820 sqlite3VdbeAddOp2(v, OP_IfPos, 1, addr); VdbeCoverage(v); in sqlite3Pragma()
821 sqlite3VdbeJumpHere(v, addr); in sqlite3Pragma()
1650 int i, j, addr, mxErr; in sqlite3Pragma() local
1738 addr = sqlite3VdbeAddOp1(v, OP_IsNull, 2); VdbeCoverage(v); in sqlite3Pragma()
1744 sqlite3VdbeJumpHere(v, addr); in sqlite3Pragma()
[all …]
H A Dupdate.c1207 int addr; /* Address of OP_OpenEphemeral */ in updateVirtualTable() local
1214 addr= sqlite3VdbeAddOp2(v, OP_OpenEphemeral, ephemTab, nArg); in updateVirtualTable()
1300 sqlite3VdbeChangeToNoop(v, addr); in updateVirtualTable()
1325 addr = sqlite3VdbeAddOp1(v, OP_Rewind, ephemTab); VdbeCoverage(v); in updateVirtualTable()
1341 sqlite3VdbeAddOp2(v, OP_Next, ephemTab, addr+1); VdbeCoverage(v); in updateVirtualTable()
1342 sqlite3VdbeJumpHere(v, addr); in updateVirtualTable()
H A Dselect.c2874 int addr = 0; in multiSelect() local
2910 if( addr ){ in multiSelect()
2921 int addr; in multiSelect() local
2941 p->addrOpenEphm[0] = addr; in multiSelect()
3011 int addr; in multiSelect() local
3025 p->addrOpenEphm[0] = addr; in multiSelect()
3042 p->addrOpenEphm[1] = addr; in multiSelect()
3127 if( addr<0 ){ in multiSelect()
3200 int addr; in generateOutputSubroutine() local
3202 addr = sqlite3VdbeCurrentAddr(v); in generateOutputSubroutine()
[all …]
H A Dexpr.c392 int addr; in codeCompare() local
402 addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, in codeCompare()
405 return addr; in codeCompare()
4066 int addr = sqlite3VdbeCurrentAddr(v); in sqlite3IndexedExprLookup() local
4076 sqlite3VdbeJumpHere(v, addr+2); in sqlite3IndexedExprLookup()
4422 int addr; in sqlite3ExprCodeTarget() local
4428 addr = sqlite3VdbeAddOp1(v, op, r1); in sqlite3ExprCodeTarget()
4432 sqlite3VdbeJumpHere(v, addr); in sqlite3ExprCodeTarget()
4915 int addr; in sqlite3ExprCodeRunJustOnce() local
4917 addr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); in sqlite3ExprCodeRunJustOnce()
[all …]
H A Dalter.c2199 int addr; in sqlite3AlterDropColumn() local
2208 addr = sqlite3VdbeAddOp1(v, OP_Rewind, iCur); VdbeCoverage(v); in sqlite3AlterDropColumn()
2255 sqlite3VdbeAddOp2(v, OP_Next, iCur, addr+1); VdbeCoverage(v); in sqlite3AlterDropColumn()
2256 sqlite3VdbeJumpHere(v, addr); in sqlite3AlterDropColumn()
H A Dwhere.c6270 int addr; in sqlite3WhereEnd() local
6394 addr = sqlite3VdbeAddOp1(v, OP_IfPos, pLevel->iLeftJoin); VdbeCoverage(v); in sqlite3WhereEnd()
6416 sqlite3VdbeJumpHere(v, addr); in sqlite3WhereEnd()
H A Dshell.c.in3097 "addr", "opcode", "p1", "p2", "p3", "p4", "p5", "comment" };
/sqlite-3.40.0/tool/
H A Drestore_jrnl.tcl130 for {set addr 0} {$addr<$db_pgsz} {set addr [expr $addr+16]} {
132 set s [string range $data $addr [expr $addr+16]]
149 $addr $hex1 $hex2 $ascii ]
H A Dvdbe_profile.tcl45 set addr [lindex $line 3]
/sqlite-3.40.0/test/
H A Dtester.tcl1451 $addr $opcode $p1 $p2 $p3 $p4 $p5 $comment
1495 set x($addr) 0
1496 set op($addr) $opcode
1504 for {set i $addr} {$i<$p2} {incr i} {
1505 set star($i) $addr
1530 if {[info exists linebreak($addr)]} {
1533 set I [string repeat " " $x($addr)]
1535 if {[info exists star($addr)]} {
1536 set ii [expr $x($star($addr))]
2194 set addr [format %x $f]
[all …]
H A Dfts4noti.test136 CREATE VIRTUAL TABLE t2 USING fts4(poi, addr, notindexed=poi);
/sqlite-3.40.0/ext/wasm/jaccwabyt/
H A Djaccwabyt.js441 const addr = obj[m.key];
443 if(!addr) return null;
444 let pos = addr;
450 return (addr===pos) ? "" : __utf8Decode(mem, addr, pos);
/sqlite-3.40.0/ext/rbu/
H A Drbufts.test81 CREATE TABLE ccc(addr, text);
82 CREATE VIRTUAL TABLE ccc_fts USING fts4(addr, text, content=ccc);
91 CREATE TABLE data_ccc(addr, text, rbu_rowid, rbu_control);
/sqlite-3.40.0/ext/fts5/test/
H A Dfts5ea.test72 9 {addr: a nosuch2: b} {no such column: nosuch2}
80 do_catchsql_test 3.$tn {SELECT fts5_expr($expr, 'name', 'addr')} [list 1 $err]
/sqlite-3.40.0/ext/wasm/
H A Dtester1.js1006 addr = dVfs[mk], prefix = 'defaultVfs.'+mname;