Searched refs:pHeap (Results 1 – 10 of 10) sorted by relevance
| /sqlite-3.40.0/test/ |
| H A D | startup.c | 532 void *pHeap = 0; in main() local 534 pHeap = malloc( nHeap ); in main() 535 if( pHeap==0 ){ in main() 539 rc = sqlite3_config(SQLITE_CONFIG_HEAP, pHeap, nHeap, mnHeap); in main() 579 free(pHeap); in main()
|
| H A D | dbfuzz.c | 700 void *pHeap = malloc( nHeap ); in main() local 701 if( pHeap==0 ) fatalError("cannot allocate %d-byte heap\n", nHeap); in main() 702 rc = sqlite3_config(SQLITE_CONFIG_HEAP, pHeap, nHeap, 32); in main()
|
| H A D | fuzzcheck.c | 1812 void *pHeap = 0; /* Heap for use by SQLite */ in main() local 2268 pHeap = realloc(pHeap, nMemThisDb); in main() 2269 if( pHeap==0 ){ in main() 2272 sqlite3_config(SQLITE_CONFIG_HEAP, pHeap, nMemThisDb, 128); in main() 2469 free(pHeap); in main()
|
| H A D | speedtest1.c | 2225 void *pHeap = 0; /* Allocated heap space */ in main() local 2428 pHeap = malloc( nHeap ); in main() 2429 if( pHeap==0 ) fatal_error("cannot allocate %d-byte heap\n", nHeap); in main() 2430 rc = sqlite3_config(SQLITE_CONFIG_HEAP, pHeap, nHeap, mnHeap); in main() 2646 free( pHeap ); in main()
|
| /sqlite-3.40.0/tool/ |
| H A D | fuzzershell.c | 805 void *pHeap = 0; /* Allocated heap space */ in main() local 928 pHeap = malloc( nHeap ); in main() 929 if( pHeap==0 ) fatalError("cannot allocate %d-byte heap\n", nHeap); in main() 930 rc = sqlite3_config(SQLITE_CONFIG_HEAP, pHeap, nHeap, mnHeap); in main() 1257 free(pHeap); in main()
|
| /sqlite-3.40.0/src/ |
| H A D | mem3.c | 554 if( !sqlite3GlobalConfig.pHeap ){ in memsys3Init() 560 mem3.aPool = (Mem3Block *)sqlite3GlobalConfig.pHeap; in memsys3Init()
|
| H A D | mem5.c | 473 zByte = (u8*)sqlite3GlobalConfig.pHeap; in memsys5Init()
|
| H A D | main.c | 575 sqlite3GlobalConfig.pHeap = va_arg(ap, void*); in sqlite3_config() 586 if( sqlite3GlobalConfig.pHeap==0 ){ in sqlite3_config()
|
| H A D | test1.c | 7823 if( sqlite3GlobalConfig.pHeap==0 ){ in sorter_test_fakeheap() 7824 sqlite3GlobalConfig.pHeap = SQLITE_INT_TO_PTR(-1); in sorter_test_fakeheap() 7827 if( sqlite3GlobalConfig.pHeap==SQLITE_INT_TO_PTR(-1) ){ in sorter_test_fakeheap() 7828 sqlite3GlobalConfig.pHeap = 0; in sorter_test_fakeheap()
|
| H A D | sqliteInt.h | 4008 void *pHeap; /* Heap storage space */ member
|