/prebuilts/go/linux-x86/test/ |
deferfin.go | 7 // Test that defers do not prevent garbage collection.
|
gc2.go | 8 // Test that buffered channels are garbage collected properly.
|
gcstring.go | 8 // does not confuse the garbage collector.
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug320.go | 20 // whatever garbage &t holds, the later reference
|
issue16515.go | 37 var s struct { a T; b [8192-62]int } // allocate 64K, hopefully it's in a new span and a few bytes before it is garbage
|
issue17381.go | 51 // put some garbage on stack
|
issue10958.go | 16 // block garbage collection. IF YOU RUN IT STANDALONE without
|
/prebuilts/go/darwin-x86/src/runtime/debug/ |
garbage.go | 13 // GCStats collect information about recent garbage collections. 16 NumGC int64 // number of garbage collections 23 // ReadGCStats reads statistics about garbage collection into stats. 84 // SetGCPercent sets the garbage collection target percentage: 90 // A negative percentage disables garbage collection. 97 // FreeOSMemory forces a garbage collection followed by an
|
/prebuilts/go/linux-x86/src/runtime/debug/ |
garbage.go | 13 // GCStats collect information about recent garbage collections. 16 NumGC int64 // number of garbage collections 23 // ReadGCStats reads statistics about garbage collection into stats. 84 // SetGCPercent sets the garbage collection target percentage: 90 // A negative percentage disables garbage collection. 97 // FreeOSMemory forces a garbage collection followed by an
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
gcmodule.c | 3 Reference Cycle Garbage Collection
58 static PyObject *garbage = NULL;
variable 82 To limit the cost of garbage collection, there are two strategies;
106 thusly: "each full garbage collection is more and more costly as the
118 so do not need to be tracked by the garbage collector. Untracking these
119 objects reduces the cost of garbage collections. However, determining
121 weighed against the benefits for garbage collection.
126 ii) When the container is examined by the garbage collector.
131 not survive until garbage collection. It is therefore not worthwhile
135 During garbage collection it is determined whether any surviving tuples [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
gcmodule.c | 3 Reference Cycle Garbage Collection
58 static PyObject *garbage = NULL;
variable 82 To limit the cost of garbage collection, there are two strategies;
106 thusly: "each full garbage collection is more and more costly as the
121 #define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */
717 /* Handle uncollectable garbage (cycles with finalizers, and stuff reachable
720 * garbage list (a Python list), else only the objects in finalizers with
721 * __del__ methods are appended to garbage. All objects in finalizers are
723 * Returns 0 if all OK, <0 on error (out of memory to grow the garbage list). [all...] |
/prebuilts/go/darwin-x86/src/runtime/ |
mcache.go | 48 // but it is opaque to the garbage collector. 58 // to the garbage collector. 93 // with the stealing of gcworkbufs during garbage collection to avoid
|
/prebuilts/go/linux-x86/src/runtime/ |
mcache.go | 48 // but it is opaque to the garbage collector. 58 // to the garbage collector. 93 // with the stealing of gcworkbufs during garbage collection to avoid
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer_posix_libcdep.cc | 246 char *garbage = internal_strstr(buffer + 1, output_terminator_); variable 249 CHECK(garbage); variable 251 garbage[0] = '\0';
|
/art/test/109-suspend-check/src/ |
Main.java | 210 byte[] garbage = new byte[100000];
|
/prebuilts/go/darwin-x86/test/stress/ |
runstress.go | 7 // It runs forever and should never fail. It tries to stress the garbage collector, 32 doParseGo = flag.Bool("parsego", true, "stress parsing Go (generates garbage)")
|
/prebuilts/go/linux-x86/test/stress/ |
runstress.go | 7 // It runs forever and should never fail. It tries to stress the garbage collector, 32 doParseGo = flag.Bool("parsego", true, "stress parsing Go (generates garbage)")
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
StripedTest.java | 123 WeakReference<Object> garbage = new WeakReference<Object>(new Object()); local 124 GcFinalization.awaitClear(garbage);
|
/prebuilts/go/darwin-x86/src/net/http/ |
range_test.go | 32 {"bytes=Ran-dom, garbage", 10, nil},
|
/prebuilts/go/darwin-x86/src/time/ |
tick.go | 52 // Ticker cannot be recovered by the garbage collector; it "leaks".
|
/prebuilts/go/darwin-x86/test/bench/go1/ |
binarytree_test.go | 5 // This benchmark, taken from the shootout, tests garbage collector
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue10958.go | 16 // block garbage collection. IF YOU RUN IT STANDALONE without
|
/prebuilts/go/linux-x86/src/net/http/ |
range_test.go | 32 {"bytes=Ran-dom, garbage", 10, nil},
|
/prebuilts/go/linux-x86/src/time/ |
tick.go | 52 // Ticker cannot be recovered by the garbage collector; it "leaks".
|
/prebuilts/go/linux-x86/test/bench/go1/ |
binarytree_test.go | 5 // This benchmark, taken from the shootout, tests garbage collector
|