Searched refs:oldP (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dutil.c153 void *sqliteRealloc_(void *oldP, int n, char *zFile, int line){ argument
156 if( oldP==0 ){
160 sqliteFree_(oldP,zFile,line);
163 oldPi = oldP;
166 fprintf(stderr,"Low-end memory corruption in realloc at 0x%x\n", (int)oldP);
174 (int)oldP);
188 memcpy(p, oldP, n>oldN ? oldN : n);
196 ++memcnt, oldN, n, (int)oldP, (int)p, zFile, line);

Completed in 47 milliseconds