Home | History | Annotate | Download | only in src

Lines Matching refs:pNew

511   void *pNew;
529 pNew = pOld;
539 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew);
540 if( pNew==0 && mem0.alarmCallback ){
542 pNew
544 if( pNew ){
545 nNew = sqlite3MallocSize(pNew);
550 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew);
552 assert( EIGHT_BYTE_ALIGNMENT(pNew) ); /* IMP: R-04675-44850 */
553 return pNew;
654 void *pNew = 0;
665 pNew = sqlite3DbMallocRaw(db, n);
666 if( pNew ){
667 memcpy(pNew, p, db->lookaside.sz);
674 pNew = sqlite3_realloc(p, n);
675 if( !pNew ){
679 sqlite3MemdebugSetType(pNew, MEMTYPE_DB |
683 return pNew;
691 void *pNew;
692 pNew = sqlite3DbRealloc(db, p, n);
693 if( !pNew ){
696 return pNew;