Lines Matching defs:Tuning
20161 /* Tuning parameters are set using SQLITE_TESTCTRL_TUNE and are controlled
20162 ** on debug-builds of the CLI using ".testctrl tune ID VALUE". Tuning
20168 ** Tuning parameters are numbered starting with 1.
20172 # define Tuning(X) (sqlite3Config.aTune[(X)-1])
20174 # define Tuning(X) 0
20253 sqlite3_int64 aTune[SQLITE_NTUNE]; /* Tuning parameters */
184408 ** Tuning parameters are for use during transient development builds,
184410 ** Access tuning parameters using the Tuning(ID) macro. Set the
184413 ** Transient use only. Tuning parameters should not be used in
184420 Tuning(id) = *piValue;
184422 *piValue = Tuning(-id);