Home
last modified time | relevance | path

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

/sqlite-3.40.0/tool/
H A Dfuzzershell.c802 int nPCache = 0, szPCache = 0;/* --pcache configuration */ in main() local
884 nPCache = integerValue(argv[i+1]); in main()
954 if( nPCache>0 && szPCache>0 ){ in main()
955 pPCache = malloc( nPCache*(sqlite3_int64)szPCache ); in main()
957 nPCache*(sqlite3_int64)szPCache); in main()
958 rc = sqlite3_config(SQLITE_CONFIG_PAGECACHE, pPCache, szPCache, nPCache); in main()
/sqlite-3.40.0/test/
H A Dspeedtest1.c2211 int nPCache = 0, szPCache = 0;/* --pcache configuration */ in main() local
2331 nPCache = integerValue(argv[i+1]); in main()
2434 if( nPCache>0 && szPCache>0 ){ in main()
2435 pPCache = malloc( nPCache*(sqlite3_int64)szPCache ); in main()
2437 nPCache*(sqlite3_int64)szPCache); in main()
2439 rc = sqlite3_config(SQLITE_CONFIG_PAGECACHE, pPCache, szPCache, nPCache); in main()