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

/netbsd-6-1-5-RELEASE/external/public-domain/sqlite/dist/
H A Dsqlite3.c15189 static malloc_zone_t* _sqliteZone_; variable
15190 #define SQLITE_MALLOC(x) malloc_zone_malloc(_sqliteZone_, (x))
15191 #define SQLITE_FREE(x) malloc_zone_free(_sqliteZone_, (x));
15192 #define SQLITE_REALLOC(x,y) malloc_zone_realloc(_sqliteZone_, (x), (y))
15194 (_sqliteZone_ ? _sqliteZone_->size(_sqliteZone_,x) : malloc_size(x))
15334 if( _sqliteZone_ ){
15342 _sqliteZone_ = malloc_default_zone();
15351 (void * volatile *)&_sqliteZone_);
[all...]

Completed in 512 milliseconds