Home | History | Annotate | Download | only in orig

Lines Matching refs:malloc

330 ** the text in memory obtained from malloc() and returns a pointer
331 ** to the text. NULL is returned at end of file, or if malloc()
348 zLine = malloc( nLine );
878 z = p->zDestTable = malloc( n+1 );
894 ** from malloc(), or a NULL pointer. The string pointed to by zAppend is
895 ** added to zIn, and the result returned in memory obtained from malloc().
1367 zQ2 = malloc( len+100 );
1764 zSql = malloc( nByte + 20 + nCol*2 );
1790 azCol = malloc( sizeof(azCol[0])*(nCol+1) );
2536 zSql = malloc( nSql+3 );
2597 ** resulting string is obtained from malloc(). The calling
2635 home_dir = malloc( n );
2648 char *z = malloc( n );
2682 zBuf = malloc( nBuf );
2786 ** the size of the alternative malloc heap,
2822 sqlite3_config(SQLITE_CONFIG_HEAP, malloc((int)szHeap), (int)szHeap, 64);
3027 if( (zHistory = malloc(nHistory))!=0 ){