Lines Matching defs:sqlite3_realloc

1528 ** or [sqlite3_realloc()] first calls xRoundup.  If xRoundup returns 0, 
2422 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
2430 ** was not obtained from sqlite3_malloc() or sqlite3_realloc().
2432 ** ^(The sqlite3_realloc() interface attempts to resize a
2435 ** parameter.)^ ^ If the first parameter to sqlite3_realloc()
2437 ** sqlite3_malloc(N) where N is the second parameter to sqlite3_realloc().
2438 ** ^If the second parameter to sqlite3_realloc() is zero or
2440 ** sqlite3_free(P) where P is the first parameter to sqlite3_realloc().
2441 ** ^sqlite3_realloc() returns a pointer to a memory allocation
2445 ** by sqlite3_realloc() and the prior allocation is freed.
2446 ** ^If sqlite3_realloc() returns NULL, then the prior allocation
2449 ** ^The memory returned by sqlite3_malloc() and sqlite3_realloc()
2467 ** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()]
2469 ** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have
2474 ** [sqlite3_free()] or [sqlite3_realloc()].
2477 SQLITE_API void *sqlite3_realloc(void*, int);
2484 ** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()]
6337 ** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their
20311 SQLITE_API void *sqlite3_realloc(void *pOld, int n){
20425 pNew = sqlite3_realloc(p, n);
20505 ** sqlite3_realloc.
21285 zNew = sqlite3_realloc(zOld, p->nAlloc);
28730 apNew = (char **)sqlite3_realloc(
35843 apNew = (struct ShmRegion *)sqlite3_realloc(
48025 apNew = (volatile u32 **)sqlite3_realloc((void *)pWal->apWiData, nByte);
92855 zOut = sqlite3_realloc(zOut, (int)nOut);
97343 #define sqlite3_realloc sqlite3_api->realloc
97676 sqlite3_realloc,
98117 aNew = sqlite3_realloc(wsdAutoext.aExt, nByte);
99101 ** buffer that the pager module resizes using sqlite3_realloc().
106940 azNew = sqlite3_realloc( p->azResult, sizeof(char*)*p->nAlloc );
107046 azNew = sqlite3_realloc( res.azResult, sizeof(char*)*res.nData );
110387 apVtabLock = sqlite3_realloc(pToplevel->apVtabLock, n);
128635 zNew = (char *)sqlite3_realloc(zBuffer, nAlloc);
129576 apNew = (Fts3SegReader **)sqlite3_realloc(pCsr->apSegment, nByte);
132917 aNew = (struct Fts3auxColstats *)sqlite3_realloc(pCsr->aStat,
133474 void *pRet = sqlite3_realloc(pOrig, nNew);
135510 pNew = sqlite3_realloc(c->zToken, c->nAllocated);
135727 char const **aNew = (const char **)sqlite3_realloc((void *)aArg, nNew);
136227 pNew = sqlite3_realloc(c->pToken, c->nTokenAllocated);
137388 p = sqlite3_realloc(p, sizeof(*p) + nNew);
138104 char *zNew = sqlite3_realloc(pReader->zTerm, nNew);
138418 aElem2 = (Fts3HashElem **)sqlite3_realloc(
138762 char *zNew = sqlite3_realloc(pTree->zMalloc, nTerm*2);
139010 char *aNew = sqlite3_realloc(pWriter->aData, nReq);
139033 char *zNew = sqlite3_realloc(pWriter->zMalloc, nTerm*2);
139345 pNew = (char *)sqlite3_realloc(pMsr->aBuffer, pMsr->nBuffer);
139674 aNew = sqlite3_realloc(pCsr->aBuffer, pCsr->nBuffer);
140406 char *a = (char *)sqlite3_realloc(pBlob->a, nAlloc);
141170 aNew = sqlite3_realloc(aIdx, nAlloc*sizeof(int));
142893 char *zNew = sqlite3_realloc(pStr->z, nAlloc);
144073 aNew = sqlite3_realloc(p->aiException, (p->nException+nEntry)*sizeof(int));
144259 char *zNew = sqlite3_realloc(pCsr->zToken, pCsr->nAlloc+64);
145853 pNew = sqlite3_realloc(pCur->aPoint, nNew*sizeof(pCur->aPoint[0]));
148866 char *zNew = sqlite3_realloc(pCsr->zBuffer, nByte);