HomeSort by relevance Sort by last modified time
    Searched refs:MAX_PAGE_SIZE (Results 1 - 3 of 3) sorted by null

  /system/core/libutils/
LinearAllocator.cpp 36 #define MAX_PAGE_SIZE ((size_t)131072) // 128kb
147 if (mCurrentPage && mPageSize < MAX_PAGE_SIZE) {
148 mPageSize = min(MAX_PAGE_SIZE, mPageSize * 2);
  /external/chromium_org/third_party/sqlite/src/src/
test_multiplex.c 39 #define MAX_PAGE_SIZE 0x10000
62 ** multiple of MAX_PAGE_SIZE. We default it here to 1GB.
64 #define SQLITE_MULTIPLEX_CHUNK_SIZE (MAX_PAGE_SIZE*16384)
771 /* Round up to nearest multiple of MAX_PAGE_SIZE. */
772 nChunkSize = (nChunkSize + (MAX_PAGE_SIZE-1));
773 nChunkSize &= ~(MAX_PAGE_SIZE-1);
    [all...]
test_config.c 563 LINKVAR( MAX_PAGE_SIZE );

Completed in 1054 milliseconds