/external/chromium_org/third_party/sqlite/src/test/ |
lookaside.test | 12 # Tests for the lookaside memory allocator. 14 # $Id: lookaside.test,v 1.10 2009/04/09 01:23:49 drh Exp $ 19 ifcapable !lookaside { 24 # The tests in this file configure the lookaside allocator after a 42 do_test lookaside-1.1 { 46 do_test lookaside-1.2 { 49 do_test lookaside-1.3.1 { 52 do_test lookaside-1.3.2 { 55 do_test lookaside-1.3.3 { 58 do_test lookaside-1.3.4 [all...] |
dbstatus.test | 53 proc lookaside {db} { 61 # lookaside buffer sizes. 67 # configuring the size of the lookaside buffer after [sqlite3] has 80 # heap and lookaside memory allocated by SQLite, and the memory 169 incr nAlloc1 [lookaside db] 175 incr nAlloc2 [lookaside db] 181 incr nAlloc3 [lookaside db] 187 incr nAlloc4 [lookaside db] 221 # lookaside memory allocated by SQLite, and the memory allocated 304 incr nAlloc1 [lookaside db [all...] |
mem5.test | 23 # The tests in this file configure the lookaside allocator after a
|
mallocC.test | 92 # overflowing the lookaside more often. To debug problems, it is 93 # sometimes helpful to reduce the size of the lookaside allocation
|
shared2.test | 164 # a pointer allocated from a lookaside buffer.
|
fts3malloc.test | 22 # Ensure the lookaside buffer is disabled for these tests.
|
/external/chromium_org/third_party/sqlite/src/src/ |
status.c | 111 *pCurrent = db->lookaside.nOut; 112 *pHighwater = db->lookaside.mxOut; 114 db->lookaside.mxOut = db->lookaside.nOut; 128 *pHighwater = db->lookaside.anStat[op - SQLITE_DBSTATUS_LOOKASIDE_HIT]; 130 db->lookaside.anStat[op - SQLITE_DBSTATUS_LOOKASIDE_HIT] = 0;
|
malloc.c | 431 ** TRUE if p is a lookaside memory allocation from db 435 return p && p>=db->lookaside.pStart && p<db->lookaside.pEnd; 453 return db->lookaside.sz; 493 pBuf->pNext = db->lookaside.pFree; 494 db->lookaside.pFree = pBuf; 495 db->lookaside.nOut--; 619 if( db->lookaside.bEnabled ){ 620 if( n>db->lookaside.sz ){ 621 db->lookaside.anStat[1]++ [all...] |
main.c | 439 ** Set up the lookaside buffers for a database connection. 441 ** If lookaside is already active, return SQLITE_BUSY. 443 ** The sz parameter is the number of bytes in each lookaside slot. 445 ** space for the lookaside memory is obtained from sqlite3_malloc(). 447 ** the lookaside memory. 451 if( db->lookaside.nOut ){ 454 /* Free any existing lookaside buffer for this handle before 458 if( db->lookaside.bMalloced ){ 459 sqlite3_free(db->lookaside.pStart); 461 /* The size of a lookaside slot needs to be larger than a pointe [all...] |
tokenize.c | 394 u8 enableLookaside; /* Saved value of db->lookaside.bEnabled */ 418 enableLookaside = db->lookaside.bEnabled; 419 if( db->lookaside.pStart ) db->lookaside.bEnabled = 1; 473 db->lookaside.bEnabled = enableLookaside;
|
sqliteInt.h | 617 typedef struct Lookaside Lookaside; 730 ** Lookaside malloc is a set of fixed-size buffers that can be used 733 ** lookaside malloc provides a significant performance enhancement 737 ** The Lookaside structure holds configuration information about the 738 ** lookaside malloc subsystem. Each available memory allocation in 739 ** the lookaside subsystem is stored on a linked list of LookasideSlot 742 ** Lookaside allocations are only allowed for objects that are associated 744 ** be stored in lookaside because in shared cache mode the schema information 746 ** schema information, the Lookaside.bEnabled flag is cleared so tha 859 Lookaside lookaside; \/* Lookaside malloc configuration *\/ member in struct:sqlite3 [all...] |
test_config.c | 343 Tcl_SetVar2(interp, "sqlite_options", "lookaside", "0", TCL_GLOBAL_ONLY); 345 Tcl_SetVar2(interp, "sqlite_options", "lookaside", "1", TCL_GLOBAL_ONLY);
|
fkey.c | 592 ** the lookaside buffer belonging to database handle dbMem. [all...] |
/external/smack/src/org/xbill/DNS/ |
DLVRecord.java | 9 * DLV - contains a Delegation Lookaside Validation record, which acts 10 * as the equivalent of a DS record in a lookaside zone.
|
Type.java | 192 /** DNSSEC Lookaside Validation, RFC 4431 . */
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteDebug.java | 131 public int lookaside; field in class:SQLiteDebug.DbStats 136 public DbStats(String dbName, long pageCount, long pageSize, int lookaside, 141 this.lookaside = lookaside;
|
SQLiteConnection.java | 1112 int lookaside = nativeGetDbLookaside(mConnectionPtr); local [all...] |
/external/oprofile/events/i386/p4-ht/ |
events | 10 event:0x05 counters:0 um:itlb_reference minimum:6000 name:ITLB_REFERENCE : translations using the instruction translation lookaside buffer
|
/external/oprofile/events/i386/p4/ |
events | 10 event:0x05 counters:0,4 um:itlb_reference minimum:3000 name:ITLB_REFERENCE : translations using the instruction translation lookaside buffer
|
/external/chromium_org/third_party/icu/source/config/ |
mh-os390 | 24 # Link Pack Area (LPA), library lookaside facility (LLA) or other #
|
/external/icu4c/config/ |
mh-os390 | 24 # Link Pack Area (LPA), library lookaside facility (LLA) or other #
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
settings.h | 254 /// Size of the Translation Lookaside Buffer (underestimation).
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/ |
settings.h | 259 /// size of the Translation Lookaside Buffer (underestimation).
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | 9219 Lookaside lookaside; \/* Lookaside malloc configuration *\/ member in struct:sqlite3 [all...] |
/external/chromium_org/third_party/gtk+/gtk/ |
compose-parse.py | 28 FILENAME_COMPOSE_SUPPLEMENTARY = 'gtk-compose-lookaside.txt' 446 """ Look if there is a lookaside (supplementary) compose file in the current 460 print "Did not find lookaside compose file. Continuing..." [all...] |