Searched refs:sqlite3_realloc64 (Results 1 – 6 of 6) sorted by relevance
/third_party/sqlite/include/ |
D | sqlite3ext.h | 587 #define sqlite3_realloc64 sqlite3_api->realloc64 macro
|
D | sqlite3.h | 2968 SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64);
|
/third_party/sqlite/src/ |
D | shell.c | 2850 FsdirLevel *aNew = (FsdirLevel*)sqlite3_realloc64(pCur->aLvl, nByte); in fsdirNext() 4713 p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 ); in decimal_new() 4732 p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 ); in decimal_new() 4891 p->a = sqlite3_realloc64(p->a, nDigit+1); in decimal_expand() 6307 aOp = sqlite3_realloc64(p->aOp, N*sizeof(p->aOp[0])); in re_resize() 6310 aArg = sqlite3_realloc64(p->aArg, N*sizeof(p->aArg[0])); in re_resize() 8664 aNew = sqlite3_realloc64(pBuf->a, nNew); in zipfileBufferGrow() 14013 p->aiIndent = (int*)sqlite3_realloc64(p->aiIndent, nAlloc*sizeof(int)); in explain_data_prepare() 14015 abYield = (int*)sqlite3_realloc64(abYield, nAlloc*sizeof(int)); in explain_data_prepare() 14232 azData = sqlite3_realloc64(azData, nAlloc*sizeof(char*)); in exec_prepared_stmt_columnar() [all …]
|
D | sqlite3.c | 3281 SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64); 28696 SQLITE_API void *sqlite3_realloc64(void *pOld, sqlite3_uint64 n){ 46731 apNew = (struct ShmRegion *)sqlite3_realloc64( 122410 pnsl = (int*)sqlite3_realloc64(pnsl, pGCC->nAccum * sizeof(int)); 128354 #define sqlite3_realloc64 sqlite3_api->realloc64 128842 sqlite3_realloc64, 129199 aNew = sqlite3_realloc64(wsdAutoext.aExt, nByte); 175257 zNew = (char *)sqlite3_realloc64(zBuffer, nAlloc); 176257 apNew = (Fts3SegReader **)sqlite3_realloc64(pCsr->apSegment, nByte); 179670 aNew = (struct Fts3auxColstats *)sqlite3_realloc64(pCsr->aStat, [all …]
|
/third_party/chromium/patch/ |
D | 0004-3.2-Beta5.patch | 47250 + pNew = sqlite3_realloc64(c->zToken, c->nAllocated); 47259 + pNew = sqlite3_realloc64(c->pToken, c->nTokenAllocated); 47279 + p = sqlite3_realloc64(p, sizeof(*p) + nNew); 47331 + aElem2 = (Fts3HashElem **)sqlite3_realloc64( 47349 + char *zNew = sqlite3_realloc64(pTree->zMalloc, (i64)nTerm*2); 47392 + char *aNew = sqlite3_realloc64(pWriter->aData, nReq); 47401 + char *zNew = sqlite3_realloc64(pWriter->zMalloc, (i64)nTerm*2); 47416 + pNew = (char *)sqlite3_realloc64(pMsr->aBuffer, pMsr->nBuffer); 47439 + aNew = sqlite3_realloc64(pCsr->aBuffer, pCsr->nBuffer); 47477 + char *a = (char *)sqlite3_realloc64(pBlob->a, nAlloc); [all …]
|
D | 0003-3.2-Beta3-1115.patch | 79119 #define sqlite3_realloc64 chrome_sqlite3_realloc64 // Line 2968 80404 + p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 ); 80440 + p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 ); 80732 + p->a = sqlite3_realloc64(p->a, nDigit+1); 80817 - FsdirLevel *aNew = (FsdirLevel*)sqlite3_realloc64(pCur->aLvl, nByte); 83314 + aOp = sqlite3_realloc64(p->aOp, N*sizeof(p->aOp[0])); 83317 + aArg = sqlite3_realloc64(p->aArg, N*sizeof(p->aArg[0])); 84353 - p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 ); 84372 - p->a = sqlite3_realloc64(p->a, p->nDigit + iExp + 1 ); 84598 - p->a = sqlite3_realloc64(p->a, nDigit+1); [all …]
|