Lines Matching defs:sqlite3_realloc

1844 ** or [sqlite3_realloc()] first calls xRoundup.  If xRoundup returns 0, 
2684 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
2692 ** was not obtained from sqlite3_malloc() or sqlite3_realloc().
2694 ** ^(The sqlite3_realloc() interface attempts to resize a
2697 ** parameter.)^ ^ If the first parameter to sqlite3_realloc()
2699 ** sqlite3_malloc(N) where N is the second parameter to sqlite3_realloc().
2700 ** ^If the second parameter to sqlite3_realloc() is zero or
2702 ** sqlite3_free(P) where P is the first parameter to sqlite3_realloc().
2703 ** ^sqlite3_realloc() returns a pointer to a memory allocation
2707 ** by sqlite3_realloc() and the prior allocation is freed.
2708 ** ^If sqlite3_realloc() returns NULL, then the prior allocation
2711 ** ^The memory returned by sqlite3_malloc() and sqlite3_realloc()
2729 ** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()]
2731 ** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have
2736 ** [sqlite3_free()] or [sqlite3_realloc()].
2739 SQLITE_API void *sqlite3_realloc(void*, int);
2746 ** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()]
6391 ** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their
19147 SQLITE_API void *sqlite3_realloc(void *pOld, int n){
19261 pNew = sqlite3_realloc(p, n);
19341 ** sqlite3_realloc.
20088 zNew = sqlite3_realloc(zOld, p->nAlloc);
23978 apRegion = sqlite3_realloc(
29090 apNew = (char **)sqlite3_realloc(
34913 apNew = (struct ShmRegion *)sqlite3_realloc(
45857 apNew = (volatile u32 **)sqlite3_realloc((void *)pWal->apWiData, nByte);
87164 zOut = sqlite3_realloc(zOut, (int)nOut);
91311 #define sqlite3_realloc sqlite3_api->realloc
91618 sqlite3_realloc,
91988 aNew = sqlite3_realloc(wsdAutoext.aExt, nByte);
92512 ** buffer that the pager module resizes using sqlite3_realloc().
99176 azNew = sqlite3_realloc( p->azResult, sizeof(char*)*p->nAlloc );
99282 azNew = sqlite3_realloc( res.azResult, sizeof(char*)*res.nData );
102470 apVtabLock = sqlite3_realloc(pToplevel->apVtabLock, n);
118274 zNew = (char *)sqlite3_realloc(zBuffer, nAlloc);
119215 apNew = (Fts3SegReader **)sqlite3_realloc(pCsr->apSegment, nByte);
122032 aNew = (struct Fts3auxColstats *)sqlite3_realloc(pCsr->aStat,
122529 void *pRet = sqlite3_realloc(pOrig, nNew);
124292 pNew = sqlite3_realloc(c->zToken, c->nAllocated);
124509 char const **aNew = (const char **)sqlite3_realloc((void *)aArg, nNew);
125009 pNew = sqlite3_realloc(c->pToken, c->nTokenAllocated);
125615 p = sqlite3_realloc(p, sizeof(*p) + nNew);
126321 char *zNew = sqlite3_realloc(pReader->zTerm, nNew);
126633 aElem2 = (Fts3HashElem **)sqlite3_realloc(
126949 char *zNew = sqlite3_realloc(pTree->zMalloc, nTerm*2);
127193 char *aNew = sqlite3_realloc(pWriter->aData, nReq);
127216 char *zNew = sqlite3_realloc(pWriter->zMalloc, nTerm*2);
127473 pNew = (char *)sqlite3_realloc(pMsr->aBuffer, pMsr->nBuffer);
127802 aNew = sqlite3_realloc(pCsr->aBuffer, pCsr->nBuffer);
129107 char *zNew = sqlite3_realloc(pStr->z, nAlloc);
134113 char *zNew = sqlite3_realloc(pCsr->zBuffer, nByte);