Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c23561 #define SQLITE_REALLOC(x,y) malloc_zone_realloc(_sqliteZone_, (x), (y)) macro
23573 #define SQLITE_REALLOC(x,y) realloc((x),(y)) macro
23697 void *p = SQLITE_REALLOC(pPrior, nByte); in sqlite3MemRealloc()
23710 p = SQLITE_REALLOC(p, nByte+8 ); in sqlite3MemRealloc()