HomeSort by relevance Sort by last modified time
    Searched full:compaction (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/chromium_org/v8/test/mjsunit/regress/
regress-350865.js 5 // Flags: --stress-compaction --stack-size=150
regress-enum-prop-keys-cache-size.js 5 // Flags: --allow-natives-syntax --stress-compaction
regress-set-flags-stress-compact.js 7 %SetFlags("--gc-interval=164 --stress-compaction");
regress-2249.js 28 // Flags: --gc-interval=10 --stress-compaction
regress-put-prototype-transition.js 5 // Flags: --allow-natives-syntax --expose-gc --stress-compaction --gc-interval=255
  /external/chromium_org/third_party/leveldatabase/src/db/
version_set.h 30 class Compaction;
77 // compaction may need to be triggered, false otherwise.
83 // bytes. Returns true if a new compaction may need to be triggered.
106 // Return the level at which we should place a new memtable compaction
117 friend class Compaction;
144 // Level that should be compacted next and its compaction score.
145 // Score < 1 means compaction is not strictly needed. These fields
227 // Pick level and inputs for a new compaction.
228 // Returns NULL if there is no compaction to be done.
230 // describes the compaction. Caller should delete the result
    [all...]
db_impl.cc 52 Compaction* const compaction; member in struct:leveldb::DBImpl::CompactionState
60 // Files produced by compaction
76 explicit CompactionState(Compaction* c)
77 : compaction(c),
515 s = Status::IOError("Deleting DB during memtable compaction");
580 } else { // Running either my compaction or another compaction.
585 // Cancel my manual compaction since we aborted early for some reason.
594 // Wait until the compaction complete
    [all...]
version_set.cc 26 // stop building a single file in a level->level+1 compaction.
30 // the lower level file set of a compaction if it would make the
31 // total compaction cover more than this many bytes.
36 // the level-0 compaction threshold based on number of files.
657 // Update compaction pointers
684 // (3) A compaction of 1MB does 25MB of IO:
688 // This implies that 25 seeks cost the same as the compaction
690 // same as the compaction of 40KB of data. We are a little
692 // of data before triggering a compaction.
1018 // Precomputed best level for next compaction
    [all...]
db_impl.h 158 // Has a background compaction been scheduled or is running?
161 // Information for a manual compaction
167 InternalKey tmp_storage; // Used to keep track of compaction progress
176 // Per level compaction stats. stats_[level] stores the stats for
version_edit.h 19 int allowed_seeks; // Seeks allowed until compaction
db_test.cc 547 Put("k2", std::string(100000, 'y')); // Trigger compaction
627 // Then do enough Get() calls to arrange for an automatic compaction
628 // of sstable A. A bug would cause the compaction to be marked as
653 // Step 4: Wait for compaction to finish
885 // Check that writes done during a memtable compaction are recovered
886 // if the database is shutdown during the memtable compaction.
894 // Trigger a long memtable compaction and reopen the database during it
897 ASSERT_OK(Put("big2", std::string(1000, 'y'))); // Triggers compaction
1020 // Check that we do not do a compaction that merges all of B in one shot.
    [all...]
  /art/runtime/gc/
collector_type.h 33 // Semi-space / mark-sweep hybrid, enables compaction.
43 // A homogeneous space compaction collector used in background transition
heap.h 120 // and compaction.
324 // Update the heap's process state to a new value, may cause compaction to occur.
617 // Returns true if we can do hspace compaction
785 // A space where non-movable objects are allocated, when compaction is enabled it contains
    [all...]
heap.cc 210 // Background compaction is currently not supported for command line runs.
212 VLOG(heap) << "Disabling background compaction for non zygote";
251 // We don't have hspace compaction enabled with GSS.
260 // This is not the case if we support homogeneous compaction or have a moving background
494 // Is background compaction is enabled?
499 // from the main space to the zygote space. If background compaction is enabled, always pass in
502 // After the zygote we want this to be false if we don't have background compaction enabled so
504 // We never have homogeneous compaction with GSS and don't need a space with movable objects.
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/doc/
impl.html 100 background thread. The compaction picks a file from level L and all
103 level-(L+1) is used as an input to the compaction and will be
104 discarded after the compaction. Aside: because level-0 is special
106 level-0 to level-1 specially: a level-0 compaction may pick more than
110 A compaction merges the contents of the picked files to produce a
115 ten level-(L+2) files. This last rule ensures that a later compaction
125 compaction at level L. The next compaction for level L will pick the
146 compaction will therefore read 26MB and write 26MB. Assuming a disk
148 compaction cost will be approximately 0.5 second
    [all...]
  /external/chromium_org/content/test/data/indexeddb/
delete_compact.html 9 <title>IDB test that database deletion triggers a compaction</title>
  /art/runtime/entrypoints/interpreter/
interpreter_entrypoints.cc 27 // TODO: Make the MethodHelper here be compaction safe.
  /external/chromium_org/base/android/java/src/org/chromium/base/
ObserverList.java 61 // Avoid adding null elements to the list as they may be removed on a compaction.
213 // We have reached the end of the list, allow for compaction.
226 // We have reached the end of the list, allow for compaction.
  /external/chromium_org/third_party/leveldatabase/src/issues/
issue178_test.cc 5 // Test for issue 178: a manual compaction causes deleted data to reappear.
  /external/emma/core/java12/com/vladium/emma/data/
MergeProcessor.java 59 * always overwrites the out file [to ensure compaction]
264 DataFactory.persist (cdata, persistFile, false); // never merge to enforce compaction behavior
266 DataFactory.persist (mdata, persistFile, false); // never merge to enforce compaction behavior
268 DataFactory.persist (new SessionData (mdata, cdata), persistFile, false); // never merge to enforce compaction behavior
  /external/llvm/docs/CommandGuide/
llvm-bcanalyzer.rst 106 **Compaction Table Bytes**
108 The size, in bytes, of all the compaction tables in all the functions.
159 **Number Of Compaction Tables**
161 The total number of compaction tables in all functions in the bitcode file.
  /art/runtime/
parsed_options.h 102 // Whether or not we use homogeneous space compaction to avoid OOM errors. If enabled,
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
mem.pxd 19 # actions, like garbage collection, memory compaction or other
  /external/chromium_org/v8/test/cctest/
test-mark-compact.cc 203 // TODO(1600): compaction of map space is temporary removed from GC.
228 // be able to trigger map compaction.
229 // To give an additional chance to fail, try to force compaction which
  /external/chromium_org/chrome/renderer/net/
predictor_queue.cc 42 // a compaction hack that removes duplicates when we try to push() a

Completed in 1576 milliseconds

1 2 3 4