Searched refs:sqlite3_realloc64 (Results 1 – 4 of 4) sorted by relevance
/freebsd-src/contrib/sqlite3/ |
H A D | sqlite3ext.h | 605 #define sqlite3_realloc64 sqlite3_api->realloc64 macro
|
H A D | shell.c | 3784 p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 ); in decimalNewFromText() 3803 p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 ); in decimalNewFromText() 4076 p->a = sqlite3_realloc64(p->a, nDigit+1); in decimal_expand() 6645 aOp = sqlite3_realloc64(p->aOp, N*sizeof(p->aOp[0])); 6648 aArg = sqlite3_realloc64(p->aArg, N*sizeof(p->aArg[0])); in re_resize() 7860 FsdirLevel *aNew = (FsdirLevel*)sqlite3_realloc64(pCur->aLvl, nByte); in fsdirNext() 11329 aNew = sqlite3_realloc64(pBuf->a, nNew); in zipfileBufferGrow() 15619 u8 *aNew = (u8*)sqlite3_realloc64(pBuf->aBuf, nNew); in dbdataBufferSize() 21492 p->aiIndent = (int*)sqlite3_realloc64(p->aiIndent, nAlloc*sizeof(int)); in explain_data_prepare() 21494 abYield = (int*)sqlite3_realloc64(abYiel in explain_data_prepare() [all...] |
H A D | sqlite3.h | 3057 ** ^The sqlite3_realloc64(X,N) interfaces works the same as 3062 ** sqlite3_malloc64(), sqlite3_realloc(), or sqlite3_realloc64(), then 3072 ** sqlite3_malloc64(), and sqlite3_realloc64() 3089 SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64); 10762 ** SQLite will try to increase the buffer size using sqlite3_realloc64() 10812 ** grow the size of the database using calls to [sqlite3_realloc64()]. This 10821 #define SQLITE_DESERIALIZE_RESIZEABLE 2 /* Resize using sqlite3_realloc64() */
|
H A D | sqlite3.c | 3370 ** ^The sqlite3_realloc64(X,N) interfaces works the same as 3375 ** sqlite3_malloc64(), sqlite3_realloc(), or sqlite3_realloc64(), then 3385 ** sqlite3_malloc64(), and sqlite3_realloc64() 3402 SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64); 11075 ** SQLite will try to increase the buffer size using sqlite3_realloc64() 11125 ** grow the size of the database using calls to [sqlite3_realloc64()]. This 11134 #define SQLITE_DESERIALIZE_RESIZEABLE 2 /* Resize using sqlite3_realloc64() */ 30806 SQLITE_API void *sqlite3_realloc64(void *pOld, sqlite3_uint64 n){ sqlite3_realloc64() function [all...] |