Lines Matching refs:sqlite3Malloc

10089 #define UNPACKED_NEED_FREE     0x0001  /* Memory is from sqlite3Malloc() */
11217 SQLITE_PRIVATE void *sqlite3Malloc(int);
14375 void *pTstAlloc = sqlite3Malloc(10); \
17041 pNew = sqlite3Malloc(sizeof(*pNew));
18393 SQLITE_PRIVATE void *sqlite3Malloc(int n){
18424 return sqlite3Malloc(n);
18540 ** sqlite3Malloc() or sqlite3_malloc().
18560 ** Free memory previously obtained from sqlite3Malloc().
18610 return sqlite3Malloc(nBytes); /* IMP: R-28354-25769 */
18617 /* The 0x7ffff00 limit term is explained in comments on sqlite3Malloc() */
18670 void *p = sqlite3Malloc(n);
18738 p = sqlite3Malloc(n);
19544 bufpt = zExtra = sqlite3Malloc( n );
21916 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
22056 new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) );
36046 ** back to sqlite3Malloc().
36069 ** it from sqlite3Malloc instead.
36071 p = sqlite3Malloc(nByte);
36214 pBlock = (PGroupBlock *)sqlite3Malloc(sz);
36343 ** exists, this function falls back to sqlite3Malloc().
39888 ** function allocates memory by calling sqlite3Malloc(). If an allocation
39929 zMasterJournal = sqlite3Malloc((int)nMasterJournal + nMasterPtr + 1);
41814 ** (sqlite3Malloc() is used to allocate memory), SQLITE_CANTOPEN or
41873 zPathname = sqlite3Malloc(nPathname*2);
48844 void *pKey = sqlite3Malloc( (int)pCur->nKey );
50027 char *zFullPathname = sqlite3Malloc(nFullPathname);
52796 pCellKey = sqlite3Malloc( nCell );
56126 sCheck.anRef = sqlite3Malloc( (sCheck.nPage+1)*sizeof(sCheck.anRef[0]) );
84363 z = sqlite3Malloc((int)nByte);
88856 *pzErrMsg = sqlite3Malloc(nErrMsg);
109649 pEngine = sqlite3ParserAlloc((void*(*)(size_t))sqlite3Malloc);
110631 pStart = sqlite3Malloc( sz*cnt ); /* IMP: R-61949-35727 */
113359 void **pNew = (void **)sqlite3Malloc(nArg*sizeof(void *)*2);