Home
last modified time | relevance | path

Searched refs:garbage (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/third_party/python/Doc/library/
Dgc.rst5 :synopsis: Interface to the cycle-detecting garbage collector.
12 This module provides an interface to the optional garbage collector. It
20 ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in
21 gc.garbage for inspection.
28 Enable automatic garbage collection.
33 Disable automatic garbage collection.
56 Set the garbage collection debugging flags. Debugging information will be
90 to be uncollectable (and were therefore moved to the :data:`garbage`
98 Set the garbage collection thresholds (the collection frequency). Setting
131 will only locate those containers which support garbage collection; extension
[all …]
Dweakref.rst27 :term:`garbage collection` is free to destroy the referent and reuse its memory
44 image object are the weak references held by weak mappings, garbage collection
51 garbage collection. :class:`WeakSet` implements the :class:`set` interface,
56 cleanup function to be called when an object is garbage collected.
177 references that will cause the garbage collector to keep the keys around longer
241 is garbage collected. Unlike an ordinary weak reference, a finalizer
246 or at garbage collection), and after that it is *dead*. Calling a live
250 Exceptions raised by finalizer callbacks during garbage collection
296 since otherwise *obj* will never be garbage collected. In
364 # referent has been garbage collected
[all …]
/third_party/python/Lib/test/
Dtest_gc.py187 for obj in gc.garbage:
193 gc.garbage.remove(obj)
213 for obj in gc.garbage:
219 gc.garbage.remove(obj)
246 self.assertEqual(gc.garbage, [])
258 self.assertEqual(len(gc.garbage), 1)
259 obj = gc.garbage.pop()
438 garbagelen = len(gc.garbage)
448 self.assertEqual(len(gc.garbage), garbagelen)
467 garbagelen = len(gc.garbage)
[all …]
Dtest_finalization.py50 gc.garbage.clear()
136 self.old_garbage = gc.garbage[:]
137 gc.garbage[:] = []
142 self.assertEqual(gc.garbage, [])
157 self.assertEqual(sorted(id(x) for x in gc.garbage), sorted(ids))
480 gc.garbage.clear()
532 gc.garbage[0].ref = None
/third_party/python/Doc/c-api/
Dgcsupport.rst8 Python's support for detecting and collecting garbage which involves circular
12 or strings), do not need to provide any explicit support for garbage
54 class that implements the garbage collector protocol and the child class
86 Returns non-zero if the object implements the garbage collector protocol,
89 The object cannot be tracked by the garbage collector if this function returns 0.
95 currently tracked by the garbage collector and 0 otherwise.
105 already finalized by the garbage collector and 0 otherwise.
140 Python core uses several visitor functions to implement cyclic garbage
194 garbage collection runs.
198 Perform a full garbage collection, if the garbage collector is enabled.
[all …]
/third_party/vk-gl-cts/framework/delibs/debase/
DdeSha1.c279 const int garbage = 0xde; in deSha1_selfTest() local
288 deMemset(&hash, garbage, sizeof(deSha1)); in deSha1_selfTest()
300 deMemset(&hash, garbage, sizeof(deSha1)); in deSha1_selfTest()
314 deMemset(&hashA, garbage, sizeof(deSha1)); in deSha1_selfTest()
315 deMemset(&hashB, garbage, sizeof(deSha1)); in deSha1_selfTest()
340 deMemset(&hashA, garbage, sizeof(deSha1)); in deSha1_selfTest()
341 deMemset(&hashB, garbage, sizeof(deSha1)); in deSha1_selfTest()
360 deMemset(&hash, garbage, sizeof(hash)); in deSha1_selfTest()
361 deMemset(&result, garbage, sizeof(result)); in deSha1_selfTest()
/third_party/pulseaudio/src/pulsecore/filter/
Dlfe-filter.c90 void *garbage = store_result ? NULL : pa_xmalloc(buf->length); in process_block() local
96 … lr4_process_float32(&f->lr4[i], samples, f->cm.channels, &data[i], garbage ? garbage : &data[i]); in process_block()
103 … lr4_process_s16(&f->lr4[i], samples, f->cm.channels, &data[i], garbage ? garbage : &data[i]); in process_block()
108 pa_xfree(garbage); in process_block()
/third_party/openssl/test/certs/
Dcert-key-cert.pem1 Some garbage at the beginning
30 Some garbage in the middle
60 More garbage in the middle
90 Some garbage at the end
/third_party/typescript/tests/baselines/reference/
DbadExternalModuleReference.errors.txt1 tests/cases/compiler/badExternalModuleReference.ts(1,21): error TS2792: Cannot find module 'garbage
5 import a1 = require("garbage");
7 !!! error TS2792: Cannot find module 'garbage'. Did you mean to set the 'moduleResolution' option t…
/third_party/node/deps/v8/include/cppgc/
DREADME.md3 …n is an open-source garbage collection library for C++ that can be used stand-alone or in collabor…
4 Oilpan implements mark-and-sweep garbage collection (GC) with limited compaction (for a subset of o…
8 - Trace-based garbage collection;
22 Oilpan features thread-local garbage collection and assumes heaps are not shared among threads.
23 In other words, objects are accessed and ultimately reclaimed by the garbage collector on the same …
24 This allows Oilpan to run garbage collection in parallel with mutators running in other threads.
39 ## Precise and conservative garbage collection
54 Oilpan can just start marking from the regular root set and collect all garbage precisely.
56 ## Atomic, incremental and concurrent garbage collection
62 This mode of operation is also known as Stop-The-World (STW) garbage collection.
[all …]
/third_party/ltp/testcases/cve/
Dstack_clash.c127 volatile char *garbage; in preallocate_stack() local
129 garbage = alloca(required); in preallocate_stack()
130 garbage[0] = garbage[required - 1] = '\0'; in preallocate_stack()
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
D126-garbage-after-directive.c1 #ifdef MACRO garbage
4 #ifndef MORE garbage
/third_party/python/Lib/
Dpipes.py208 garbage = []
215 garbage.append(temp)
240 if garbage:
242 for file in garbage:
/third_party/glslang/Test/
Dpreprocessor.include.enabled.vert14 #include "foo2.h" garbage
15 #include <foo.h> garbage
/third_party/libuv/test/
Dtest-tcp-connect6-error.c45 const char garbage[] = in TEST_IMPL() local
52 garbage_addr = (const struct sockaddr_in6*) &garbage; in TEST_IMPL()
Dtest-tcp-connect-error.c47 const char garbage[] = in TEST_IMPL() local
54 garbage_addr = (const struct sockaddr_in*) &garbage; in TEST_IMPL()
Dtest-tcp-bind6-error.c101 char garbage[] = in TEST_IMPL() local
110 garbage_addr = (struct sockaddr_in6*) &garbage; in TEST_IMPL()
/third_party/python/Modules/
Dgcmodule.c168 gcstate->garbage = PyList_New(0); in _PyGC_Init()
169 if (gcstate->garbage == NULL) { in _PyGC_Init()
937 assert(gcstate->garbage != NULL); in handle_legacy_finalizers()
944 if (PyList_Append(gcstate->garbage, op) < 0) { in handle_legacy_finalizers()
1008 assert(gcstate->garbage != NULL); in delete_garbage()
1009 if (PyList_Append(gcstate->garbage, op) < 0) { in delete_garbage()
1200 assert(gcstate->garbage != NULL); in gc_collect_main()
2014 assert(gcstate->garbage != NULL); in gcmodule_exec()
2015 if (PyModule_AddObjectRef(module, "garbage", gcstate->garbage) < 0) { in gcmodule_exec()
2133 && gcstate->garbage != NULL && PyList_GET_SIZE(gcstate->garbage) > 0) { in _PyGC_DumpShutdownStats()
[all …]
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Dparser.h85 void gst_parser_test_drain_garbage (guint8 *data, guint size, guint8 *garbage, guint gsize);
89 void gst_parser_test_skip_garbage (guint8 *data, guint size, guint8 *garbage, guint gsize);
Dparser.c343 gst_parser_test_drain_garbage (guint8 * data, guint size, guint8 * garbage, in gst_parser_test_drain_garbage() argument
351 ptest.series[1].data = garbage; in gst_parser_test_drain_garbage()
375 gst_parser_test_skip_garbage (guint8 * data, guint size, guint8 * garbage, in gst_parser_test_skip_garbage() argument
381 ptest.series[1].data = garbage; in gst_parser_test_skip_garbage()
/third_party/gstreamer/gstplugins_bad/tests/check/elements/
Dparser.h113 void gst_parser_test_drain_garbage (const guint8 *data, guint size, guint8 *garbage, guint gsize);
119 void gst_parser_test_skip_garbage (const guint8 *data, guint size, guint8 *garbage, guint gsize);
Dparser.c349 guint8 * garbage, guint gsize) in gst_parser_test_drain_garbage() argument
354 ptest.series[1].data = garbage; in gst_parser_test_drain_garbage()
378 gst_parser_test_skip_garbage (const guint8 * data, guint size, guint8 * garbage, in gst_parser_test_skip_garbage() argument
384 ptest.series[1].data = garbage; in gst_parser_test_skip_garbage()
/third_party/mbedtls/tests/suites/
Dtest_suite_asn1parse.data406 BIT STRING with trailing garbage, unused_bits=0
409 BIT STRING with trailing garbage, unused_bits=7
412 BIT STRING with trailing garbage, unused_bits=8
421 SEQUENCE OF 0 OCTET STRING plus trailing garbage
490 Traverse empty SEQUENCE plus trailing garbage
544 AlgorithmIdentifier, no params, trailing garbage
550 AlgorithmIdentifier, null params, trailing garbage
/third_party/openssl/test/recipes/80-test_cmp_http_data/
Dtest_connection.csv15 0,server port bad syntax: leading garbage, -section,, -server,_SERVER_HOST:x/+80,,,,,BLANK,,,,BLANK…
16 0,server port bad synatx: trailing garbage, -section,, -server,_SERVER_HOST:_SERVER_PORT+/x.,,,,,BL…
20 0,proxy port bad syntax: leading garbage, -section,, -server,_SERVER_HOST:_SERVER_PORT, -proxy,127.…
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DResourceVk.cpp133 SharedGarbage::SharedGarbage(SharedResourceUse &&use, std::vector<GarbageObject> &&garbage) in SharedGarbage() argument
134 : mLifetime(std::move(use)), mGarbage(std::move(garbage)) in SharedGarbage()

12345678910>>...12