HomeSort by relevance Sort by last modified time
    Searched refs:gc (Results 476 - 500 of 1753) sorted by null

<<11121314151617181920>>

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
cache.h 33 bool gc; // enable GC member in struct:fst::CacheOptions
34 size_t gc_limit; // # of bytes allowed before GC
37 CacheOptions(bool g, size_t l) : gc(g), gc_limit(l) {}
39 : gc(FLAGS_fst_default_cache_gc),
51 // cached. If the 'gc' option is 'false', cached items have the extent
52 // of the FST - minimizing computation. If the 'gc' option is 'true',
81 cache_first_state_(0), cache_gc_(opts.gc), cache_size_(0),
150 GC(s, false);
194 GC(s, false)
    [all...]
  /external/v8/test/mjsunit/compiler/
alloc-object.js 28 // Flags: --allow-natives-syntax --expose-gc --inline-construct
56 gc(); // Makes V8 forget about type information for test_helper.
  /external/zlib/src/contrib/puff/
Makefile 42 rm -f puff puft *.o *.gc*
  /libcore/luni/src/test/java/libcore/java/lang/ref/
FinalizeTest.java 141 System.gc();
  /libcore/luni/src/test/java/tests/api/java/lang/ref/
PhantomReferenceTest.java 50 * java.lang.Runtime#gc()
59 // Initiate another GC from inside enqueue() to
61 Runtime.getRuntime().gc();
72 // it will be gc'ed.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dict.py 5 import gc, weakref namespace
577 gc.collect()
582 gc.collect()
583 gc.collect()
584 self.assertFalse(gc.is_tracked(t), t)
587 self.assertTrue(gc.is_tracked(t), t)
588 gc.collect()
589 gc.collect()
590 self.assertTrue(gc.is_tracked(t), t)
594 # Test GC-optimization of dict literal
    [all...]
test_sys_setprofile.py 1 import gc namespace
360 old_gc = gc.isenabled()
361 gc.disable()
368 gc.enable()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dict.py 5 import gc, weakref namespace
577 gc.collect()
582 gc.collect()
583 gc.collect()
584 self.assertFalse(gc.is_tracked(t), t)
587 self.assertTrue(gc.is_tracked(t), t)
588 gc.collect()
589 gc.collect()
590 self.assertTrue(gc.is_tracked(t), t)
594 # Test GC-optimization of dict literal
    [all...]
test_sys_setprofile.py 1 import gc namespace
360 old_gc = gc.isenabled()
361 gc.disable()
368 gc.enable()
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/cp/
cp-tree.h 509 VEC(tree,gc) *instantiations;
680 DEF_VEC_ALLOC_O (qualified_typedef_usage_t,gc);
684 VEC(qualified_typedef_usage_t,gc) *typedefs_needing_access_checking;
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/
cp-tree.h 509 VEC(tree,gc) *instantiations;
680 DEF_VEC_ALLOC_O (qualified_typedef_usage_t,gc);
684 VEC(qualified_typedef_usage_t,gc) *typedefs_needing_access_checking;
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/cp/
cp-tree.h 509 VEC(tree,gc) *instantiations;
680 DEF_VEC_ALLOC_O (qualified_typedef_usage_t,gc);
684 VEC(qualified_typedef_usage_t,gc) *typedefs_needing_access_checking;
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/
cp-tree.h 509 VEC(tree,gc) *instantiations;
680 DEF_VEC_ALLOC_O (qualified_typedef_usage_t,gc);
684 VEC(qualified_typedef_usage_t,gc) *typedefs_needing_access_checking;
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 23 #include "gc/allocator/dlmalloc.h"
24 #include "gc/heap.h"
25 #include "gc/space/dlmalloc_space.h"
171 gc::Heap* heap = Runtime::Current()->GetHeap();
172 gc::space::DlMallocSpace* alloc_space = heap->GetAllocSpace();
  /external/chromium_org/chrome/common/extensions/docs/static/js/
scroll.js 12 var sidebar = document.getElementById('gc-sidebar');
  /external/chromium_org/v8/test/mjsunit/
array-constructor-feedback.js 28 // Flags: --allow-natives-syntax --smi-only-arrays --expose-gc
38 // Reset the GC stress mode to be off. Needed because AllocationMementos only
39 // live for one gc, so a gc that happens in certain fragile areas of the test
41 %SetFlags("--gc-interval=-1")
array-feedback.js 28 // Flags: --allow-natives-syntax --smi-only-arrays --expose-gc
38 // Reset the GC stress mode to be off. Needed because AllocationMementos only
39 // live for one gc, so a gc that happens in certain fragile areas of the test
41 %SetFlags("--gc-interval=-1")
  /external/chromium_org/v8/test/mjsunit/regress/
regress-123919.js 28 // Flags: --allow-natives-syntax --gc-global
regress-331444.js 28 // Flags: --expose-gc
  /external/chromium_org/v8/test/webkit/
getter-setter-gc.js 33 // Force a gc
  /external/jdiff/src/jdiff/
JDiff.java 224 System.gc(); // Clean up after running ANT
239 System.gc(); // Clean up after running ANT
  /external/v8/test/mjsunit/
external-array.js 28 // Flags: --allow-natives-syntax --expose-gc
247 gc(); // Makes V8 forget about type information for test_func.
298 gc(); // Makes V8 forget about type information for test_func.
318 gc(); // Makes V8 forget about type information for array_load_set_smi_check.
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 358 Runtime.getRuntime().gc();
360 Runtime.getRuntime().gc();
  /hardware/invensense/60xx/libsensors_iio/software/build/android/
common.mk 36 ANDROID_LINK += -Wl,--gc-sections
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/c-family/
c-common.h 867 VEC(tree,gc) *, VEC(tree,gc) *);
869 extern tree resolve_overloaded_builtin (location_t, tree, VEC(tree,gc) *);
    [all...]

Completed in 355 milliseconds

<<11121314151617181920>>