Home
last modified time | relevance | path

Searched refs:cyclic (Results 1 – 25 of 60) sorted by relevance

123

/third_party/rust/crates/cxx/tests/ui/
Dstruct_cycle.stderr1 error: unsupported cyclic data structure
7 error: unsupported cyclic data structure
13 error: unsupported cyclic data structure
19 error: unsupported cyclic data structure
/third_party/lwip/src/core/
Dtimeouts.c238 const struct lwip_cyclic_timer *cyclic = (const struct lwip_cyclic_timer *)arg; in lwip_cyclic_timer() local
241 LWIP_DEBUGF(TIMERS_DEBUG, ("tcpip: %s()\n", cyclic->handler_name)); in lwip_cyclic_timer()
243 cyclic->handler(); in lwip_cyclic_timer()
246 …next_timeout_time = (u32_t)(current_timeout_due_time + cyclic->interval_ms); /* overflow handled … in lwip_cyclic_timer()
250 … sys_timeout_abs((u32_t)(now + cyclic->interval_ms), lwip_cyclic_timer, arg, cyclic->handler_name); in lwip_cyclic_timer()
252 sys_timeout_abs((u32_t)(now + cyclic->interval_ms), lwip_cyclic_timer, arg); in lwip_cyclic_timer()
258 sys_timeout_abs(next_timeout_time, lwip_cyclic_timer, arg, cyclic->handler_name); in lwip_cyclic_timer()
/third_party/python/Modules/
Dgc_weakref.txt5 for that matter) during cyclic gc:
40 The primary thing it missed is that when a weakref to a piece of cyclic
43 possibly resurrect an insane object (one for which cyclic gc has called-- or
59 Clearing cyclic trash can call Python code. If there are weakrefs to
60 any of the cyclic trash, then those weakrefs can be used to resurrect
61 the objects. Therefore, *before* clearing cyclic trash, we need to
77 Before 2.3.3, Python's cyclic gc didn't pay any attention to weakrefs.
87 becomes part of a clump of cyclic trash. When enough cycles are broken by
88 cyclic gc that the object is reclaimed, the callback is invoked. If it's
105 the current collection, and nothing reachable from it would be in cyclic
[all …]
/third_party/python/Lib/idlelib/
Dhistory.py27 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
62 if self.cyclic:
72 if not self.cyclic and pointer < 0: # abort history_prev
Dconfig-main.def91 cyclic=1
DNEWS2x.txt235 - Add config-main option to make the 'history' feature non-cyclic.
236 Default remains cyclic. Python Patch 914546 Noam Raphael.
/third_party/typescript/tests/baselines/reference/
DarrayFakeFlatNoCrashInferenceDeclarations.errors.txt1 …3,10): error TS5088: The inferred type of 'foo' references a type with a cyclic structure which ca…
19 !!! error TS5088: The inferred type of 'foo' references a type with a cyclic structure which cannot…
DcyclicTypeInstantiation.types48 // Relating types of a and b produces instantiations of the cyclic anonymous types in foo and bar
DcyclicTypeInstantiation.symbols50 // Relating types of a and b produces instantiations of the cyclic anonymous types in foo and bar
/third_party/python/Lib/idlelib/idle_test/
Dtest_history.py33 self.assertEqual(self.history.cyclic,
135 self.history.cyclic = False
143 self.history.cyclic = False
/third_party/node/test/es-module/
Dtest-esm-cyclic-dynamic-import.mjs2 import('./test-esm-cyclic-dynamic-import.mjs');
/third_party/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectsource_test.cc576 Cyclic cyclic; in TEST_P() local
577 cyclic.set_m_int(123); in TEST_P()
579 Book* book = cyclic.mutable_m_book(); in TEST_P()
581 Cyclic* current = cyclic.mutable_m_cyclic(); in TEST_P()
582 Author* current_author = cyclic.add_m_author(); in TEST_P()
598 Status status = ExecuteTest(cyclic, Cyclic::descriptor()); in TEST_P()
/third_party/python/Lib/test/leakers/
DREADME.txt8 Note: be careful to check for cyclic garbage. Sometimes it may be helpful
/third_party/python/Doc/c-api/
Dallocation.rst19 object participates in the cyclic garbage detector, it is added to the
Dgcsupport.rst140 Python core uses several visitor functions to implement cyclic garbage
/third_party/python/Doc/extending/
Dnewtypes_tutorial.rst433 handler on a type which doesn't support cyclic garbage collection [#]_.
658 Supporting cyclic garbage collection
661 Python has a :term:`cyclic garbage collector (GC) <garbage collection>` that
673 Fortunately, Python's cyclic garbage collector will eventually figure out that
691 be properly detected and collected by the cyclic GC, our :class:`Custom` type
697 First, the traversal method lets the cyclic GC know about subobjects that could
789 :c:member:`~PyTypeObject.tp_free` handlers, we'd need to modify them for cyclic
/third_party/ffmpeg/libavcodec/x86/
Dlossless_audiodsp.asm164 …; linear is faster than branch tree or jump table, because the branches taken are cyclic (i.e. pre…
/third_party/python/Doc/library/
Dxml.dom.minidom.rst121 versions of Python without cyclic GC. Even when cyclic GC is available, using
Dgraphlib.rst210 the first and the last node will be the same, to make it clear that it is cyclic.
/third_party/PyYAML/
DCHANGES140 * Clear cyclic references in the parser and the emitter
/third_party/gstreamer/gstreamer/docs/random/ds/
Dnegotiation103 …hough gtk has the bonus of being a tree which we don't have, we have a directed, maybe cyclic graph
/third_party/python/Misc/NEWS.d/
D3.7.0a4.rst294 takes about 1/3 time for cyclic GC.
/third_party/libabigail/tests/data/
DMakefile.am898 test-diff-filter/libtest25-cyclic-type-v0.so \
899 test-diff-filter/libtest25-cyclic-type-v1.so \
900 test-diff-filter/test25-cyclic-type-report-0.txt \
901 test-diff-filter/test25-cyclic-type-report-1.txt \
902 test-diff-filter/test25-cyclic-type-v0.cc \
903 test-diff-filter/test25-cyclic-type-v1.cc \
/third_party/node/doc/api/
Dmodules.md133 or form cyclic dependencies.
403 Careful planning is required to allow cyclic module dependencies to work
/third_party/libwebsockets/READMEs/
DREADME.fault-injection.md232 to make the fault inject itself at a random probability, or in a cyclic pattern,

123