Home
last modified time | relevance | path

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

/sqlite-3.40.0/tool/
H A Dfuzzershell.c803 int nScratch = 0, szScratch=0;/* --scratch configuration */ in main() local
895 szScratch = integerValue(argv[i+2]); in main()
947 if( nScratch>0 && szScratch>0 ){ in main()
948 pScratch = malloc( nScratch*(sqlite3_int64)szScratch ); in main()
950 nScratch*(sqlite3_int64)szScratch); in main()
951 rc = sqlite3_config(SQLITE_CONFIG_SCRATCH, pScratch, szScratch, nScratch); in main()
/sqlite-3.40.0/src/
H A Dbtree.c7879 int szScratch; /* Size of scratch memory requested */ in balance_nonroot() local
8006 szScratch = in balance_nonroot()
8011 assert( szScratch<=7*(int)pBt->pageSize ); in balance_nonroot()
8012 b.apCell = sqlite3StackAllocRaw(0, szScratch ); in balance_nonroot()