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

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
pr19803.d 8 # a defined (sec > 0), public (scl == 2) symbol, even after garbage
  /external/tensorflow/tensorflow/python/util/
tf_should_use_test.py 61 self.assertFalse(gc.garbage)
79 self.assertFalse(gc.garbage)
87 self.assertFalse(gc.garbage)
101 self.assertFalse(gc.garbage)
120 self.assertFalse(gc.garbage)
  /external/python/cpython3/Lib/test/
test_gc.py 58 and so must be garbage collected. If one or more objects in the
159 # in gc.garbage.
174 for obj in gc.garbage:
179 self.fail("didn't find obj in garbage (finalizer)")
180 gc.garbage.remove(obj)
185 # in gc.garbage.
200 for obj in gc.garbage:
205 self.fail("didn't find obj in garbage (finalizer)")
206 gc.garbage.remove(obj)
226 # Verify that cyclic garbage like lists show up in gc.garbage if th
    [all...]
  /external/deqp/framework/delibs/debase/
deSha1.c 279 const int garbage = 0xde; local
288 deMemset(&hash, garbage, sizeof(deSha1));
300 deMemset(&hash, garbage, sizeof(deSha1));
314 deMemset(&hashA, garbage, sizeof(deSha1));
315 deMemset(&hashB, garbage, sizeof(deSha1));
340 deMemset(&hashA, garbage, sizeof(deSha1));
341 deMemset(&hashB, garbage, sizeof(deSha1));
360 deMemset(&hash, garbage, sizeof(hash));
361 deMemset(&result, garbage, sizeof(result));
  /external/ltp/testcases/cve/
stack_clash.c 141 volatile char *garbage; local
143 garbage = alloca(required);
144 garbage[0] = garbage[required - 1] = '\0';
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue11256.go 19 // Let the garbage collector run concurrently.
43 // Generate some garbage.
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
  /prebuilts/go/linux-x86/test/fixedbugs/
issue11256.go 19 // Let the garbage collector run concurrently.
43 // Generate some garbage.
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...]
  /external/python/cpython2/Lib/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/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...]
  /art/runtime/gc/accounting/
space_bitmap.cc 187 uintptr_t garbage = live[i].LoadRelaxed() & ~mark[i].LoadRelaxed(); local
188 if (UNLIKELY(garbage != 0)) {
191 const size_t shift = CTZ(garbage);
192 garbage ^= (static_cast<uintptr_t>(1)) << shift;
194 } while (garbage != 0);
  /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:
  /external/python/cpython2/Lib/
pipes.py 220 garbage = []
227 garbage.append(temp)
252 if garbage:
254 for file in garbage:
  /external/python/cpython3/Lib/
pipes.py 208 garbage = []
215 garbage.append(temp)
240 if garbage:
242 for file in garbage:
  /external/python/cpython3/Modules/
gcmodule.c 3 Reference Cycle Garbage Collection
65 static PyObject *garbage = NULL; variable
89 To limit the cost of garbage collection, there are two strategies;
113 thusly: "each full garbage collection is more and more costly as the
125 so do not need to be tracked by the garbage collector. Untracking these
126 objects reduces the cost of garbage collections. However, determining
128 weighed against the benefits for garbage collection.
133 ii) When the container is examined by the garbage collector.
138 not survive until garbage collection. It is therefore not worthwhile
142 During garbage collection it is determined whether any surviving tuple
    [all...]
  /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:

Completed in 851 milliseconds

12 3 4 5 6 7 8 91011>>