| /external/toolchain-utils/binary_search_tool/full_bisect_test/ |
| D | good-output.txt | 1 pre-order traversal, with recursion: 4 pre-order traversal, without recursion: 7 in-order traversal, with recursion: 10 in-order traversal, without recursion:
|
| D | bad-output-3.txt | 1 pre-order traversal, with recursion: 4 pre-order traversal, without recursion: 7 in-order traversal, with recursion: 10 in-order traversal, without recursion:
|
| D | bad-output-1.txt | 1 pre-order traversal, with recursion: 4 pre-order traversal, without recursion: 7 in-order traversal, with recursion: 10 in-order traversal, without recursion:
|
| D | bad-output-2.txt | 1 pre-order traversal, with recursion: 4 pre-order traversal, without recursion: 7 in-order traversal, with recursion: 10 in-order traversal, without recursion:
|
| /external/pigweed/pw_tokenizer/py/pw_tokenizer/ |
| D | detokenize.py | 260 recursion: int = DEFAULT_RECURSION, 278 if recursion > 0: 280 prefix, recursion 295 recursion: int = DEFAULT_RECURSION, 307 return self._detokenize_nested_callback(prefix, recursion)(data) 314 recursion: int = DEFAULT_RECURSION, 317 return self.detokenize_text(data, prefix, recursion) 324 recursion: int = DEFAULT_RECURSION, 327 output.write(self._detokenize_nested(data, prefix, recursion)) 335 recursion: int = DEFAULT_RECURSION, [all …]
|
| /external/pcre/testdata/ |
| D | testoutput15 | 215 Failed: error -52: nested recursion at the same subject position 219 Failed: error -52: nested recursion at the same subject position 223 Failed: error -52: nested recursion at the same subject position 376 # These tests provoke recursion loops, which give a different error message 384 Failed: error -52: nested recursion at the same subject position 394 Failed: error -52: nested recursion at the same subject position 404 Failed: error -52: nested recursion at the same subject position 414 Failed: error -52: nested recursion at the same subject position 424 Failed: error -52: nested recursion at the same subject position 428 Failed: error -52: nested recursion at the same subject position [all …]
|
| /external/compiler-rt/lib/tsan/rtl/ |
| D | tsan_rtl_mutex.cc | 154 CHECK_EQ(s->recursion, 0); in MutexLock() 158 CHECK_GT(s->recursion, 0); in MutexLock() 163 if (s->recursion == 0) { in MutexLock() 170 s->recursion += rec; in MutexLock() 172 if (common_flags()->detect_deadlocks && (s->recursion - rec) == 0) { in MutexLock() 198 if (kCppMode && (s->recursion == 0 || s->owner_tid != thr->tid)) { in MutexUnlock() 204 rec = all ? s->recursion : 1; in MutexUnlock() 205 s->recursion -= rec; in MutexUnlock() 206 if (s->recursion == 0) { in MutexUnlock() 215 if (common_flags()->detect_deadlocks && s->recursion == 0 && in MutexUnlock() [all …]
|
| /external/skia/resources/sksl/errors/ |
| D | IllegalRecursionSimple.rts | 3 // Simple recursion is not allowed, even with branching: 7 potential recursion (function call cycle) not allowed:
|
| D | IllegalRecursionMutual.rts | 3 // Straightforward mutual recursion (not allowed) 9 potential recursion (function call cycle) not allowed:
|
| D | IllegalRecursionComplex.rts | 3 // Complex recursion spanning several functions with overloads, etc. 37 potential recursion (function call cycle) not allowed:
|
| /external/angle/third_party/glslang/src/Test/ |
| D | recurse2.frag | 3 // cross-unit recursion 5 // two-level recursion
|
| D | recurse1.vert | 7 // direct recursion 14 // two-level recursion
|
| D | recurse1.frag | 3 // cross-unit recursion 7 // two-level recursion
|
| /external/deqp-deps/glslang/Test/ |
| D | recurse2.frag | 3 // cross-unit recursion 5 // two-level recursion
|
| D | recurse1.vert | 7 // direct recursion 14 // two-level recursion
|
| D | recurse1.frag | 3 // cross-unit recursion 7 // two-level recursion
|
| /external/starlark-go/starlark/testdata/ |
| D | misc.star | 62 assert.fails(lambda: cyclic < cyclic, "maximum recursion") 63 assert.fails(lambda: cyclic == cyclic, "maximum recursion") 66 assert.fails(lambda: cyclic2 == cyclic, "maximum recursion") 78 assert.fails(lambda: cyclic5 == cyclic5 ,"maximum recursion") 81 assert.fails(lambda: cyclic5 == cyclic6, "maximum recursion")
|
| D | function.star | 50 # recursion detection, simple 57 # recursion detection, advanced 59 # A simplistic recursion check that looks for repeated calls to the 60 # same function value will not detect recursion using the Y 62 # recursion. To truly prohibit recursion, the dynamic check must look 80 # With the -recursion option it would yield [[2, 4, 6], ["aa", "bb", "cc"]]. 242 # option:recursion
|
| D | recursion.star | 1 # Tests of Starlark recursion and while statement. 5 # option:recursion
|
| /external/python/cpython2/Misc/NEWS.d/ |
| D | 2.6rc2.rst | 26 recursion tests in Tools/scripts/find_recursion_limit.py can raise 28 exactly the recursion limit is exceeded. Consequently, both exception types
|
| /external/cronet/ipc/ |
| D | ipc_message_utils.cc | 115 void WriteValue(const base::Value& value, int recursion, base::Pickle* pickle); 118 int recursion, in WriteDictValue() argument 123 WriteValue(entry.second, recursion + 1, pickle); in WriteDictValue() 128 int recursion, in WriteListValue() argument 132 WriteValue(entry, recursion + 1, pickle); in WriteListValue() 136 void WriteValue(const base::Value& value, int recursion, base::Pickle* pickle) { in WriteValue() argument 138 if (recursion > kMaxRecursionDepth) { in WriteValue() 176 WriteDictValue(value.GetDict(), recursion, pickle); in WriteValue() 181 WriteListValue(value.GetList(), recursion, pickle); in WriteValue() 189 int recursion, [all …]
|
| /external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/ |
| D | guarantee-all-funcs-one-use.mlir | 48 // Handle error case of infinite recursion. 59 // Handle error case of infinite recursion with mutually recursive ops.
|
| /external/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_deadlock_detector2.cc | 156 m->recursion = 0; in MutexInit() 283 m->recursion++; in MutexAfterLock() 289 CHECK_EQ(m->recursion, 0); in MutexAfterLock() 290 m->recursion = 1; in MutexAfterLock() 314 if (--m->recursion > 0) in MutexBeforeUnlock()
|
| /external/mesa3d/docs/relnotes/ |
| D | 9.2.2.rst | 34 Valgrind error in program_resource_visitor::recursion 72 program_resource_visitor::recursion.
|
| /external/aws-sdk-java-v2/test/protocol-tests-core/src/main/resources/software/amazon/awssdk/protocol/suites/cases/ |
| D | query-input.json | 465 // TODO the current implementation of query marshallers cannot easily support recursion
|