Home
last modified time | relevance | path

Searched refs:sqlite3_realloc64 (Results 1 – 5 of 5) sorted by relevance

/third_party/sqlite/include/
Dsqlite3ext.h604 #define sqlite3_realloc64 sqlite3_api->realloc64 macro
Dsqlite3.h3006 SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64);
/third_party/sqlite/src/
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(azData, nAlloc*sizeof(char*)); in exec_prepared_stmt_columnar()
[all …]
Dsqlite3.c3319 SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64);
29608 SQLITE_API void *sqlite3_realloc64(void *pOld, sqlite3_uint64 n){
49203 apNew = (struct ShmRegion *)sqlite3_realloc64(
126320 pnsl = (int*)sqlite3_realloc64(pnsl, pGCC->nAccum * sizeof(int));
132314 #define sqlite3_realloc64 sqlite3_api->realloc64
132819 sqlite3_realloc64,
133207 aNew = sqlite3_realloc64(wsdAutoext.aExt, nByte);
181376 zNew = (char *)sqlite3_realloc64(zBuffer, nAlloc);
182376 apNew = (Fts3SegReader **)sqlite3_realloc64(pCsr->apSegment, nByte);
185798 aNew = (struct Fts3auxColstats *)sqlite3_realloc64(pCsr->aStat,
[all …]
/third_party/chromium/patch/
D0003-ohos-1115.patch84522 #define sqlite3_realloc64 chrome_sqlite3_realloc64 // Line 2968
85807 + p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 );
85843 + p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 );
86135 + p->a = sqlite3_realloc64(p->a, nDigit+1);
86220 - FsdirLevel *aNew = (FsdirLevel*)sqlite3_realloc64(pCur->aLvl, nByte);
88717 + aOp = sqlite3_realloc64(p->aOp, N*sizeof(p->aOp[0]));
88720 + aArg = sqlite3_realloc64(p->aArg, N*sizeof(p->aArg[0]));
89756 - p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 );
89775 - p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 );
90001 - p->a = sqlite3_realloc64(p->a, nDigit+1);
[all …]