Searched refs:sqlite3_realloc (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3ext.h317 #define sqlite3_realloc sqlite3_api->realloc macro
H A Dsqlite3.h1227 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
2060 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
2068 ** was not obtained from sqlite3_malloc() or sqlite3_realloc().
2070 ** ^(The sqlite3_realloc() interface attempts to resize a
2073 ** parameter.)^ ^ If the first parameter to sqlite3_realloc()
2075 ** sqlite3_malloc(N) where N is the second parameter to sqlite3_realloc().
2076 ** ^If the second parameter to sqlite3_realloc() is zero or
2078 ** sqlite3_free(P) where P is the first parameter to sqlite3_realloc().
2079 ** ^sqlite3_realloc() returns a pointer to a memory allocation
2083 ** by sqlite3_realloc() an
[all...]
H A Dsqlite3.c1780 ** 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() an
18658 SQLITE_API void *sqlite3_realloc(void *pOld, int n){ function
89209 #define sqlite3_realloc macro
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3ext.h449 #define sqlite3_realloc sqlite3_api->realloc macro
H A Dsqlite3.h1642 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
2844 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
2852 ** was not obtained from sqlite3_malloc() or sqlite3_realloc().
2854 ** ^The sqlite3_realloc(X,N) interface attempts to resize a
2856 ** ^If the X parameter to sqlite3_realloc(X,N)
2859 ** ^If the N parameter to sqlite3_realloc(X,N) is zero or
2862 ** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation
2866 ** by sqlite3_realloc(X,N) and the prior allocation is freed.
2867 ** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the
2871 ** sqlite3_realloc(
[all...]
H A Dshell.c9854 char *zNew = (char*)sqlite3_realloc(pSlot->z, nByte*2);
13764 azCol = sqlite3_realloc(azCol, nAlloc*sizeof(azCol[0]));
17784 azName = sqlite3_realloc(azName, (nName+1)*2*sizeof(char*));
H A Dsqlite3.c2705 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
3907 ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
3915 ** was not obtained from sqlite3_malloc() or sqlite3_realloc().
3917 ** ^The sqlite3_realloc(X,N) interface attempts to resize a
3919 ** ^If the X parameter to sqlite3_realloc(X,N)
3922 ** ^If the N parameter to sqlite3_realloc(X,N) is zero or
3925 ** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation
3929 ** by sqlite3_realloc(X,N) and the prior allocation is freed.
3930 ** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the
3934 ** sqlite3_realloc(
28115 SQLITE_API void *sqlite3_realloc(void *pOld, int n){ function
125839 #define sqlite3_realloc macro
[all...]

Completed in 1278 milliseconds