Home
last modified time | relevance | path

Searched refs:SQLITE_REALLOC (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/src/
H A Dmem1.c66 #define SQLITE_REALLOC(x,y) malloc_zone_realloc(_sqliteZone_, (x), (y)) macro
78 #define SQLITE_REALLOC(x,y) realloc((x),(y)) macro
202 void *p = SQLITE_REALLOC(pPrior, nByte); in sqlite3MemRealloc()
215 p = SQLITE_REALLOC(p, nByte+8 ); in sqlite3MemRealloc()