/third_party/python/Doc/library/ |
D | gc.rst | 5 :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 …]
|
D | weakref.rst | 27 :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/ |
D | test_gc.py | 187 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 …]
|
D | test_finalization.py | 50 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/ |
D | gcsupport.rst | 8 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/ |
D | deSha1.c | 279 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/ |
D | lfe-filter.c | 90 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/ |
D | cert-key-cert.pem | 1 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/ |
D | badExternalModuleReference.errors.txt | 1 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/ |
D | README.md | 3 …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/ |
D | stack_clash.c | 127 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/ |
D | 126-garbage-after-directive.c | 1 #ifdef MACRO garbage 4 #ifndef MORE garbage
|
/third_party/python/Lib/ |
D | pipes.py | 208 garbage = [] 215 garbage.append(temp) 240 if garbage: 242 for file in garbage:
|
/third_party/glslang/Test/ |
D | preprocessor.include.enabled.vert | 14 #include "foo2.h" garbage 15 #include <foo.h> garbage
|
/third_party/libuv/test/ |
D | test-tcp-connect6-error.c | 45 const char garbage[] = in TEST_IMPL() local 52 garbage_addr = (const struct sockaddr_in6*) &garbage; in TEST_IMPL()
|
D | test-tcp-connect-error.c | 47 const char garbage[] = in TEST_IMPL() local 54 garbage_addr = (const struct sockaddr_in*) &garbage; in TEST_IMPL()
|
D | test-tcp-bind6-error.c | 101 char garbage[] = in TEST_IMPL() local 110 garbage_addr = (struct sockaddr_in6*) &garbage; in TEST_IMPL()
|
/third_party/python/Modules/ |
D | gcmodule.c | 168 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/ |
D | parser.h | 85 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);
|
D | parser.c | 343 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/ |
D | parser.h | 113 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);
|
D | parser.c | 349 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/ |
D | test_suite_asn1parse.data | 406 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/ |
D | test_connection.csv | 15 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/ |
D | ResourceVk.cpp | 133 SharedGarbage::SharedGarbage(SharedResourceUse &&use, std::vector<GarbageObject> &&garbage) in SharedGarbage() argument 134 : mLifetime(std::move(use)), mGarbage(std::move(garbage)) in SharedGarbage()
|