Searched refs:pIns (Results 1 – 2 of 2) sorted by relevance
93 sqlite3_stmt *pIns = 0; /* Statement to insert into dbOut */ in optfuzz_exec() local101 pIns = prepare_sql(dbOut, "INSERT INTO staging(x) VALUES(?1)"); in optfuzz_exec()143 sqlite3_bind_text(pIns, 1, zLine, j, SQLITE_TRANSIENT); in optfuzz_exec()144 rc = sqlite3_step(pIns); in optfuzz_exec()146 rc = sqlite3_reset(pIns); in optfuzz_exec()162 sqlite3_finalize(pIns); in optfuzz_exec()
7059 u8 *pIns; /* The point in pPage->aCellIdx[] where no cell inserted */ in insertCell() local7121 pIns = pPage->aCellIdx + i*2; in insertCell()7122 memmove(pIns+2, pIns, 2*(pPage->nCell - i)); in insertCell()7123 put2byte(pIns, idx); in insertCell()