Searched refs:SQLITE_WIN32_HEAP_FLAGS (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 47549 #ifndef SQLITE_WIN32_HEAP_FLAGS 47550 # define SQLITE_WIN32_HEAP_FLAGS (0) macro 48499 assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); in sqlite3_win32_compact_heap() 48502 if( (nLargest=osHeapCompact(hHeap, SQLITE_WIN32_HEAP_FLAGS))==0 ){ in sqlite3_win32_compact_heap() 48721 assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); in winMemMalloc() 48724 p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); in winMemMalloc() 48743 assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ); in winMemFree() 48746 if( !osHeapFree(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ){ in winMemFree() 48764 assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ); in winMemRealloc() 48768 p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); in winMemRealloc() [all …]
|