Searched refs:SQLITE_REALLOC (Results 1 – 1 of 1) sorted by relevance
16071 #define SQLITE_REALLOC(x,y) malloc_zone_realloc(_sqliteZone_, (x), (y)) macro16083 #define SQLITE_REALLOC(x,y) realloc((x),(y)) macro16204 void *p = SQLITE_REALLOC(pPrior, nByte); in sqlite3MemRealloc()16217 p = SQLITE_REALLOC(p, nByte+8 ); in sqlite3MemRealloc()