HomeSort by relevance Sort by last modified time
    Searched refs:garbage (Results 26 - 50 of 296) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug483.go 7 // Test for a garbage collection bug involving not
bug484.go 15 // garbage collector to use unused data.
68 // call function that used to let the garbage collector
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
  /prebuilts/go/linux-x86/test/fixedbugs/
bug483.go 7 // Test for a garbage collection bug involving not
bug484.go 15 // garbage collector to use unused data.
68 // call function that used to let the garbage collector
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_gc.py 123 # in gc.garbage.
137 for obj in gc.garbage:
142 self.fail("didn't find obj in garbage (finalizer)")
143 gc.garbage.remove(obj)
147 # in gc.garbage.
161 for obj in gc.garbage:
166 self.fail("didn't find obj in garbage (finalizer)")
167 gc.garbage.remove(obj)
186 # Verify that cyclic garbage like lists show up in gc.garbage if the
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_gc.py 129 # in gc.garbage.
143 for obj in gc.garbage:
148 self.fail("didn't find obj in garbage (finalizer)")
149 gc.garbage.remove(obj)
153 # in gc.garbage.
167 for obj in gc.garbage:
172 self.fail("didn't find obj in garbage (finalizer)")
173 gc.garbage.remove(obj)
192 # Verify that cyclic garbage like lists show up in gc.garbage if th
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_gc.py 129 # in gc.garbage.
143 for obj in gc.garbage:
148 self.fail("didn't find obj in garbage (finalizer)")
149 gc.garbage.remove(obj)
153 # in gc.garbage.
167 for obj in gc.garbage:
172 self.fail("didn't find obj in garbage (finalizer)")
173 gc.garbage.remove(obj)
192 # Verify that cyclic garbage like lists show up in gc.garbage if th
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gc.py 129 # in gc.garbage.
143 for obj in gc.garbage:
148 self.fail("didn't find obj in garbage (finalizer)")
149 gc.garbage.remove(obj)
153 # in gc.garbage.
167 for obj in gc.garbage:
172 self.fail("didn't find obj in garbage (finalizer)")
173 gc.garbage.remove(obj)
192 # Verify that cyclic garbage like lists show up in gc.garbage if th
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gc.py 129 # in gc.garbage.
143 for obj in gc.garbage:
148 self.fail("didn't find obj in garbage (finalizer)")
149 gc.garbage.remove(obj)
153 # in gc.garbage.
167 for obj in gc.garbage:
172 self.fail("didn't find obj in garbage (finalizer)")
173 gc.garbage.remove(obj)
192 # Verify that cyclic garbage like lists show up in gc.garbage if th
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pipes.py 222 garbage = []
229 garbage.append(temp)
254 if garbage:
256 for file in garbage:
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pipes.py 220 garbage = []
227 garbage.append(temp)
252 if garbage:
254 for file in garbage:
  /prebuilts/gdb/linux-x86/lib/python2.7/
pipes.py 220 garbage = []
227 garbage.append(temp)
252 if garbage:
254 for file in garbage:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pipes.py 220 garbage = []
227 garbage.append(temp)
252 if garbage:
254 for file in garbage:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pipes.py 220 garbage = []
227 garbage.append(temp)
252 if garbage:
254 for file in garbage:
  /prebuilts/go/darwin-x86/src/runtime/
extern.go 17 The GOGC variable sets the initial garbage collection target percentage.
20 is GOGC=100. Setting GOGC=off disables the garbage collector entirely.
42 garbage collector's concurrent mark phase by performing a
45 mark, the garbage collector will panic.
47 gcpacertrace: setting gcpacertrace=1 causes the garbage collector to
54 that allow the garbage collector to avoid repeating a stack scan during the
63 garbage collected.
65 gcstoptheworld: setting gcstoptheworld=1 disables concurrent garbage collection,
66 making every garbage collection a stop-the-world event. Setting gcstoptheworld=2
67 also disables concurrent sweeping after the garbage collection finishes
    [all...]
lfstack.go 8 // so they can be garbage collected if there are no other pointers to nodes.
  /prebuilts/go/linux-x86/src/runtime/
extern.go 17 The GOGC variable sets the initial garbage collection target percentage.
20 is GOGC=100. Setting GOGC=off disables the garbage collector entirely.
42 garbage collector's concurrent mark phase by performing a
45 mark, the garbage collector will panic.
47 gcpacertrace: setting gcpacertrace=1 causes the garbage collector to
54 that allow the garbage collector to avoid repeating a stack scan during the
63 garbage collected.
65 gcstoptheworld: setting gcstoptheworld=1 disables concurrent garbage collection,
66 making every garbage collection a stop-the-world event. Setting gcstoptheworld=2
67 also disables concurrent sweeping after the garbage collection finishes
    [all...]
lfstack.go 8 // so they can be garbage collected if there are no other pointers to nodes.
  /art/runtime/gc/accounting/
space_bitmap.cc 195 uintptr_t garbage = live[i].LoadRelaxed() & ~mark[i].LoadRelaxed(); local
196 if (UNLIKELY(garbage != 0)) {
199 const size_t shift = CTZ(garbage);
200 garbage ^= (static_cast<uintptr_t>(1)) << shift;
202 } while (garbage != 0);
  /prebuilts/go/darwin-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.

Completed in 2076 milliseconds

12 3 4 5 6 7 8 91011>>