Home
last modified time | relevance | path

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

/PHP-5.6/ext/sqlite3/libsqlite/
H A Dsqlite3.c17072 static malloc_zone_t* _sqliteZone_; variable
17073 #define SQLITE_MALLOC(x) malloc_zone_malloc(_sqliteZone_, (x))
17074 #define SQLITE_FREE(x) malloc_zone_free(_sqliteZone_, (x));
17075 #define SQLITE_REALLOC(x,y) malloc_zone_realloc(_sqliteZone_, (x), (y))
17077 (_sqliteZone_ ? _sqliteZone_->size(_sqliteZone_,x) : malloc_size(x))
17249 if( _sqliteZone_ ){ in sqlite3MemInit()
17257 _sqliteZone_ = malloc_default_zone(); in sqlite3MemInit()
17266 (void * volatile *)&_sqliteZone_); in sqlite3MemInit()
17267 }while(!_sqliteZone_); in sqlite3MemInit()

Completed in 342 milliseconds