Searched refs:testAddr (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/third_party/sqlite/src/src/ |
D | expr.c | 1577 int testAddr = 0; /* One-time test address */ in sqlite3CodeSubselect() local 1596 testAddr = sqlite3VdbeAddOp2(v, OP_Integer, 1, mem); in sqlite3CodeSubselect() 1597 assert( testAddr>0 || pParse->db->mallocFailed ); in sqlite3CodeSubselect() 1603 pParse->db, "EXECUTE %s%s SUBQUERY %d", testAddr?"":"CORRELATED ", in sqlite3CodeSubselect() 1695 if( testAddr && !sqlite3ExprIsConstant(pE2) ){ in sqlite3CodeSubselect() 1696 sqlite3VdbeChangeToNoop(v, testAddr-1, 2); in sqlite3CodeSubselect() 1697 testAddr = 0; in sqlite3CodeSubselect() 1766 if( testAddr ){ in sqlite3CodeSubselect() 1767 sqlite3VdbeJumpHere(v, testAddr-1); in sqlite3CodeSubselect()
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.c | 72314 int testAddr = 0; /* One-time test address */ 72333 testAddr = sqlite3VdbeAddOp2(v, OP_Integer, 1, mem); 72334 assert( testAddr>0 || pParse->db->mallocFailed ); 72340 pParse->db, "EXECUTE %s%s SUBQUERY %d", testAddr?"":"CORRELATED ", 72432 if( testAddr && !sqlite3ExprIsConstant(pE2) ){ 72433 sqlite3VdbeChangeToNoop(v, testAddr-1, 2); 72434 testAddr = 0; 72503 if( testAddr ){ 72504 sqlite3VdbeJumpHere(v, testAddr-1);
|