Home
last modified time | relevance | path

Searched refs:sqlite3_realloc64 (Results 1 - 4 of 4) sorted by relevance

/third_party/sqlite/include/
H A Dsqlite3ext.h604 #define sqlite3_realloc64 sqlite3_api->realloc64 macro
H A Dsqlite3.h2974 ** ^The sqlite3_realloc64(X,N) interfaces works the same as
2979 ** sqlite3_malloc64(), sqlite3_realloc(), or sqlite3_realloc64(), then
2989 ** sqlite3_malloc64(), and sqlite3_realloc64()
3006 SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64);
10456 ** SQLite will try to increase the buffer size using sqlite3_realloc64()
10496 ** grow the size of the database using calls to [sqlite3_realloc64()]. This
10505 #define SQLITE_DESERIALIZE_RESIZEABLE 2 /* Resize using sqlite3_realloc64() */
/third_party/sqlite/src/
H A Dshell.c2494 p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 ); in decimal_new()
2513 p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 ); in decimal_new()
2672 p->a = sqlite3_realloc64(p->a, nDigit+1); in decimal_expand()
4123 aOp = sqlite3_realloc64(p->aOp, N*sizeof(p->aOp[0])); in re_resize()
4126 aArg = sqlite3_realloc64(p->aArg, N*sizeof(p->aArg[0])); in re_resize()
5329 FsdirLevel *aNew = (FsdirLevel*)sqlite3_realloc64(pCur->aLvl, nByte); in fsdirNext()
8773 aNew = sqlite3_realloc64(pBuf->a, nNew); in zipfileBufferGrow()
17512 p->aiIndent = (int*)sqlite3_realloc64(p->aiIndent, nAlloc*sizeof(int)); in explain_data_prepare()
17514 abYield = (int*)sqlite3_realloc64(abYield, nAlloc*sizeof(int)); in explain_data_prepare()
17899 azData = sqlite3_realloc64(azDat in exec_prepared_stmt_columnar()
[all...]
H A Dsqlite3.c3287 ** ^The sqlite3_realloc64(X,N) interfaces works the same as
3292 ** sqlite3_malloc64(), sqlite3_realloc(), or sqlite3_realloc64(), then
3302 ** sqlite3_malloc64(), and sqlite3_realloc64()
3319 SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64);
10786 ** SQLite will try to increase the buffer size using sqlite3_realloc64()
10826 ** grow the size of the database using calls to [sqlite3_realloc64()]. This
10835 #define SQLITE_DESERIALIZE_RESIZEABLE 2 /* Resize using sqlite3_realloc64() */
29612 SQLITE_API void *sqlite3_realloc64(void *pOld, sqlite3_uint64 n){ sqlite3_realloc64() function
132527 #define sqlite3_realloc64 global() macro
[all...]

Completed in 171 milliseconds