Home | History | Annotate | Download | only in dist

Lines Matching refs:xRealloc

1681 ** The xRealloc method must work like realloc() from the standard C library
1682 ** with the exception that if the second argument to xRealloc is zero,
1683 ** xRealloc must be a no-op - it must not perform any allocation or
1685 ** xRealloc is always a value returned by a prior call to xRoundup.
1687 ** xRealloc can perform exactly as the standard library realloc() and
1691 ** previously obtained from xMalloc or xRealloc. The allocated size
1727 void *(*xRealloc)(void*,int); /* Resize an allocation */
14045 ** malloc failures (when the xMalloc() or xRealloc() method of the
14249 ** or xRealloc().
14880 ** are made and returned by the xMalloc() and xRealloc()
15569 ** are made and returned by the xMalloc() and xRealloc()
17979 ** argument to xRealloc is always a value returned by a prior call to
17993 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew);
17996 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew);
18004 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew);