Lines Matching defs:sqlite3_realloc

1780 ** or [sqlite3_realloc()] first calls xRoundup.  If xRoundup returns 0, 
2613 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
2621 ** was not obtained from sqlite3_malloc() or sqlite3_realloc().
2623 ** ^(The sqlite3_realloc() interface attempts to resize a
2626 ** parameter.)^ ^ If the first parameter to sqlite3_realloc()
2628 ** sqlite3_malloc(N) where N is the second parameter to sqlite3_realloc().
2629 ** ^If the second parameter to sqlite3_realloc() is zero or
2631 ** sqlite3_free(P) where P is the first parameter to sqlite3_realloc().
2632 ** ^sqlite3_realloc() returns a pointer to a memory allocation
2636 ** by sqlite3_realloc() and the prior allocation is freed.
2637 ** ^If sqlite3_realloc() returns NULL, then the prior allocation
2640 ** ^The memory returned by sqlite3_malloc() and sqlite3_realloc()
2658 ** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()]
2660 ** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have
2665 ** [sqlite3_free()] or [sqlite3_realloc()].
2668 SQLITE_API void *sqlite3_realloc(void*, int);
2675 ** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()]
6215 ** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their
18658 SQLITE_API void *sqlite3_realloc(void *pOld, int n){
18772 pNew = sqlite3_realloc(p, n);
18852 ** sqlite3_realloc.
19659 zNew = sqlite3_realloc(zOld, p->nAlloc);
23543 apRegion = sqlite3_realloc(
28578 apNew = (char **)sqlite3_realloc(
33811 apNew = (struct ShmRegion *)sqlite3_realloc(
44888 apNew = (volatile u32 **)sqlite3_realloc((void *)pWal->apWiData, nByte);
85086 zOut = sqlite3_realloc(zOut, (int)nOut);
89209 #define sqlite3_realloc sqlite3_api->realloc
89516 sqlite3_realloc,
89885 aNew = sqlite3_realloc(wsdAutoext.aExt, nByte);
90375 ** buffer that the pager module resizes using sqlite3_realloc().
96996 azNew = sqlite3_realloc( p->azResult, sizeof(char*)*p->nAlloc );
97102 azNew = sqlite3_realloc( res.azResult, sizeof(char*)*res.nData );
100283 apVtabLock = sqlite3_realloc(pToplevel->apVtabLock, n);
115642 zNew = (char *)sqlite3_realloc(zBuffer, nAlloc);
116538 apNew = (Fts3SegReader **)sqlite3_realloc(pCsr->apSegment, nByte);
119284 aNew = (struct Fts3auxColstats *)sqlite3_realloc(pCsr->aStat,
119742 void *pRet = sqlite3_realloc(pOrig, nNew);
121495 pNew = sqlite3_realloc(c->zToken, c->nAllocated);
121711 char const **aNew = (const char **)sqlite3_realloc((void *)aArg, nNew);
122212 pNew = sqlite3_realloc(c->pToken, c->nTokenAllocated);
122764 p = sqlite3_realloc(p, sizeof(*p) + nNew);
123412 char *zNew = sqlite3_realloc(pReader->zTerm, nNew);
123728 aElem2 = (Fts3HashElem **)sqlite3_realloc(
124039 char *zNew = sqlite3_realloc(pTree->zMalloc, nTerm*2);
124283 char *aNew = sqlite3_realloc(pWriter->aData, nReq);
124306 char *zNew = sqlite3_realloc(pWriter->zMalloc, nTerm*2);
124545 pNew = (char *)sqlite3_realloc(pMsr->aBuffer, pMsr->nBuffer);
124862 aNew = sqlite3_realloc(pCsr->aBuffer, pCsr->nBuffer);
126025 char *zNew = sqlite3_realloc(pStr->z, nAlloc);
131024 char *zNew = sqlite3_realloc(pCsr->zBuffer, nByte);