Lines Matching full:realloc
1688 ** The xRealloc method must work like realloc() from the standard C library
1694 ** xRealloc can perform exactly as the standard library realloc() and
14202 ** SQLite will use the standard C-library malloc/realloc/free interface
14267 ** Like realloc(). Resize an allocation previously obtained from
14281 p = realloc(p, nByte+8 );
14354 ** SQLite will use the standard C-library malloc/realloc/free interface
40871 /* Grow the Pager.aSavepoint array using realloc(). Return SQLITE_NOMEM
84538 void *(*realloc)(void*,int);
84741 #define sqlite3_realloc sqlite3_api->realloc
100382 ** zero the stack is dynamically sized using realloc()
101529 pNew = realloc(p->yystack, newSize*sizeof(pNew[0]));
109453 /* Load the next term on the node into zBuffer. Use realloc() to expand
116410 /* If the buffer currently allocated is too small for this entry, realloc
118038 /* If there is insufficient space allocated at StrBuffer.z, use realloc()