Home | History | Annotate | Download | only in dist

Lines Matching full:realloc

1681 ** The xRealloc method must work like realloc() from the standard C library
1687 ** xRealloc can perform exactly as the standard library realloc() and
14195 ** SQLite will use the standard C-library malloc/realloc/free interface
14260 ** Like realloc(). Resize an allocation previously obtained from
14274 p = realloc(p, nByte+8 );
14347 ** SQLite will use the standard C-library malloc/realloc/free interface
40864 /* Grow the Pager.aSavepoint array using realloc(). Return SQLITE_NOMEM
84531 void *(*realloc)(void*,int);
84734 #define sqlite3_realloc sqlite3_api->realloc
100375 ** zero the stack is dynamically sized using realloc()
101522 pNew = realloc(p->yystack, newSize*sizeof(pNew[0]));
109425 /* Load the next term on the node into zBuffer. Use realloc() to expand
116379 /* If the buffer currently allocated is too small for this entry, realloc
118007 /* If there is insufficient space allocated at StrBuffer.z, use realloc()