Lines Matching defs:sqlite3_realloc

2055 ** or [sqlite3_realloc()] first calls xRoundup.  If xRoundup returns 0,
3344 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
3352 ** was not obtained from sqlite3_malloc() or sqlite3_realloc().
3354 ** ^The sqlite3_realloc(X,N) interface attempts to resize a
3356 ** ^If the X parameter to sqlite3_realloc(X,N)
3359 ** ^If the N parameter to sqlite3_realloc(X,N) is zero or
3362 ** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation
3366 ** by sqlite3_realloc(X,N) and the prior allocation is freed.
3367 ** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the
3371 ** sqlite3_realloc(X,N) except that N is a 64-bit unsigned integer instead
3375 ** sqlite3_malloc64(), sqlite3_realloc(), or sqlite3_realloc64(), then
3384 ** ^The memory returned by sqlite3_malloc(), sqlite3_realloc(),
3390 ** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()]
3392 ** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have
3397 ** [sqlite3_free()] or [sqlite3_realloc()].
3401 SQLITE_API void *sqlite3_realloc(void*, int);
3410 ** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()]
8905 ** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their
30511 ** a limit on the size parameter to sqlite3_malloc() and sqlite3_realloc().
30799 SQLITE_API void *sqlite3_realloc(void *pOld, int n){
31115 ** sqlite3_realloc.
37981 char *aNew = sqlite3_realloc(pFile->aJrnl, iEnd);
43276 apNew = (char **)sqlite3_realloc(
136911 #define sqlite3_realloc sqlite3_api->realloc
137354 sqlite3_realloc,
139314 ** buffer that the pager module resizes using sqlite3_realloc().
172607 ** sqlite3_realloc() that includes a call to sqlite3FaultSim() to facilitate
172611 return sqlite3FaultSim(700) ? 0 : sqlite3_realloc(pOld, newSize);
217013 UChar *zNew = sqlite3_realloc(zOutput, nOut);
217431 char *zNew = sqlite3_realloc(pCsr->zBuffer, nByte);
220368 RbuSpan *aIdxCol = (RbuSpan*)sqlite3_realloc(
226259 ** If not, use sqlite3_realloc() to grow the buffer so that there is.
237131 Fts5ExprPhrase **ap = (Fts5ExprPhrase**)sqlite3_realloc(
247160 Fts5TokenDataIter *pNew = (Fts5TokenDataIter*)sqlite3_realloc(pIn, nByte);
247212 aNew = (Fts5TokenDataMap*)sqlite3_realloc(pT->aMap, nByte);
247306 Fts5TokenDataMap *aNew = (Fts5TokenDataMap*)sqlite3_realloc(