Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dvdbe.c733 u64 nProgressLimit; /* Invoke xProgress() when nVmStep reaches this */ in sqlite3VdbeExec() local
751 nProgressLimit = db->nProgressOps - (iPrior % db->nProgressOps); in sqlite3VdbeExec()
753 nProgressLimit = LARGEST_UINT64; in sqlite3VdbeExec()
961 while( nVmStep>=nProgressLimit && db->xProgress!=0 ){ in sqlite3VdbeExec()
963 nProgressLimit += db->nProgressOps; in sqlite3VdbeExec()
965 nProgressLimit = LARGEST_UINT64; in sqlite3VdbeExec()
8821 while( nVmStep>=nProgressLimit && db->xProgress!=0 ){ in sqlite3VdbeExec()
8822 nProgressLimit += db->nProgressOps; in sqlite3VdbeExec()
8824 nProgressLimit = LARGEST_UINT64; in sqlite3VdbeExec()