Lines Matching refs:nBytes
458 static void *winMemMalloc(int nBytes);
460 static void *winMemRealloc(void *pPrior, int nBytes);
1470 static void *winMemMalloc(int nBytes){ in winMemMalloc() argument
1481 assert( nBytes>=0 ); in winMemMalloc()
1482 p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); in winMemMalloc()
1485 nBytes, osGetLastError(), (void*)hHeap); in winMemMalloc()
1513 static void *winMemRealloc(void *pPrior, int nBytes){ in winMemRealloc() argument
1524 assert( nBytes>=0 ); in winMemRealloc()
1526 p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); in winMemRealloc()
1528 p = osHeapReAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior, (SIZE_T)nBytes); in winMemRealloc()
1532 pPrior ? "HeapReAlloc" : "HeapAlloc", nBytes, osGetLastError(), in winMemRealloc()