Home
last modified time | relevance | path

Searched refs:recursion (Results 1 – 25 of 275) sorted by relevance

1234567891011

/openbsd/gnu/usr.bin/perl/cpan/Math-BigInt/t/
H A Dupgrade2.t22 # argument is an unknown type. This will call infinite recursion for methods
37 pass(qq|no 'Deep recursion on subroutine ...'|);
41 pass(qq|no 'Deep recursion on subroutine ...'|);
47 pass(qq|no 'Deep recursion on subroutine ...'|);
51 pass(qq|no 'Deep recursion on subroutine ...'|);
57 pass(qq|no 'Deep recursion on subroutine ...'|);
61 pass(qq|no 'Deep recursion on subroutine ...'|);
67 pass(qq|no 'Deep recursion on subroutine ...'|);
71 pass(qq|no 'Deep recursion on subroutine ...'|);
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mutex.cpp144 int recursion; member
171 locked[type].recursion++; in Lock()
182 locked[type].recursion = 1; in Lock()
190 CHECK_GT(locked[type].recursion, 0); in Unlock()
191 if (--locked[type].recursion) in Unlock()
198 for (int i = 0; i < mutex_type_count; i++) CHECK_EQ(locked[i].recursion, 0); in CheckNoLocks()
H A Dsanitizer_deadlock_detector2.cpp151 m->recursion = 0; in MutexInit()
276 m->recursion++; in MutexAfterLock()
282 CHECK_EQ(m->recursion, 0); in MutexAfterLock()
283 m->recursion = 1; in MutexAfterLock()
307 if (--m->recursion > 0) in MutexBeforeUnlock()
H A Dsanitizer_deadlock_detector_interface.h40 u32 recursion;
/openbsd/sys/arch/macppc/stand/
H A Dofdev.c247 static int recursion; in search_label() local
256 if (recursion++ <= 1) in search_label()
266 recursion--; in search_label()
272 recursion--; in search_label()
278 recursion--; in search_label()
283 recursion--; in search_label()
288 recursion--; in search_label()
/openbsd/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_mutex.cpp178 first = s->recursion == 0; in MutexPostLock()
181 CHECK_EQ(s->recursion, 0); in MutexPostLock()
185 CHECK_GT(s->recursion, 0); in MutexPostLock()
190 s->recursion += rec; in MutexPostLock()
238 s->recursion -= rec; in MutexUnlock()
239 if (s->recursion == 0) { in MutexUnlock()
247 if (common_flags()->detect_deadlocks && s->recursion == 0 && in MutexUnlock()
389 CHECK_GT(s->recursion, 0); in MutexReadOrWriteUnlock()
390 s->recursion--; in MutexReadOrWriteUnlock()
391 if (s->recursion == 0) { in MutexReadOrWriteUnlock()
[all …]
/openbsd/gnu/usr.bin/perl/t/lib/warnings/
H A Dpp_hot41 Deep recursion on subroutine \"%s\" [Perl_sub_crush_depth]
44 Deep recursion on anonymous subroutine [Perl_sub_crush_depth]
250 use warnings 'recursion' ;
257 die "ok\n" if $_[0] =~ /^Deep recursion on subroutine "main::fred"/
265 no warnings 'recursion' ;
272 die "ok\n" if $_[0] =~ /^Deep recursion on subroutine "main::fred"/
280 use warnings 'recursion' ;
288 Deep recursion on anonymous subroutine at - line 5.
291 no warnings 'recursion' ;
H A Dpp_ctl48 Deep recursion on subroutine \"%s\"
178 use warnings 'recursion' ;
187 Deep recursion on subroutine "main::fred" at - line 6.
190 no warnings 'recursion' ;
H A Dregexec7 Complex regular subexpression recursion limit (%d) exceeded
10 Complex regular subexpression recursion limit (%d) exceeded
41 Complex regular subexpression recursion limit (*MASKED*) exceeded at - line 9.
93 Complex regular subexpression recursion limit (*MASKED*) exceeded at - line 9.
/openbsd/regress/bin/ksh/
H A Dalias.t3 Check that recursion is detected/avoided in aliases.
14 Check that recursion is detected/avoided in aliases.
27 Check that recursion is detected/avoided in aliases.
/openbsd/gnu/llvm/llvm/docs/
H A DMyFirstTypoFix.rst34 Clang has a warning for infinite recursion:
41 itself [-Winfinite-recursion]
48 input.cc:1:14: warning: to understand recursion, you must first
49 understand recursion [-Winfinite-recursion]
231 understand recursion, you must first understand recursion".
246 first understand recursion [-Winfinite-recursion]**
264 Clang :: SemaCXX/warn-infinite-recursion.cpp
275 $ vi ../clang/test/SemaCXX/warn-infinite-recursion.cpp
279 `// expected-warning{{to understand recursion}}`.
285 - **lit tests** (e.g. SemaCXX/warn-infinite-recursion.cpp).
[all …]
/openbsd/gnu/usr.bin/perl/cpan/Memoize/t/
H A Dcorrectness.t90 $SIG{__WARN__} = sub { if ( $_[0] =~ /^Deep recursion/ ) { $fail = 1 } else { warn $_[0] } };
94 sub deep_test { no warnings "recursion"; deep_test() if $limit-- > 0 }
102 ok !$fail, 'no recursion warning thrown from Memoize';
/openbsd/usr.sbin/nsd/dnstap/
H A Ddnstap.proto99 // further recursion. These are not shown on the diagram above, but have
120 // Resolvers typically clear the RD (recursion desired) bit when
130 // server which is expected to perform further recursion, from the
133 // (recursion desired) bit when querying the DNS server. The DNS server
140 // typically sets the RA (recursion available) bit when responding.
145 // further recursion, from the perspective of the downstream DNS
150 // DNS server performing recursion to a downstream DNS server, from the
/openbsd/usr.sbin/unbound/dnstap/
H A Ddnstap.proto148 // further recursion. These are not shown on the diagram above, but have
169 // Resolvers typically clear the RD (recursion desired) bit when
179 // server which is expected to perform further recursion, from the
182 // (recursion desired) bit when querying the DNS server. The DNS server
189 // typically sets the RA (recursion available) bit when responding.
194 // further recursion, from the perspective of the downstream DNS
199 // DNS server performing recursion to a downstream DNS server, from the
/openbsd/regress/usr.bin/mandoc/roff/args/
H A Dinfrec.out_ascii4 args-infrec - infinite recursion in macro argument expansion
/openbsd/regress/usr.bin/mandoc/roff/string/
H A Dinfinite.out_ascii4 string-infinite - endless recursion in string expansion
/openbsd/gnu/usr.bin/perl/dist/Carp/t/
H A DCarp_overloadless.t8 # test that enabling overload without loading overload.pm does not trigger infinite recursion
/openbsd/gnu/usr.bin/cvs/
H A DChangeLog.zoo529 Added -R option to force recursion.
538 Added -l option to disable recursion.
539 Added -R option to force recursion.
542 Added -l option to disable recursion.
543 Added -R option to force recursion.
555 Added -l option to disable recursion.
556 Added -R option to force recursion.
562 Added -R option to force recursion.
567 Added -l option to disable recursion.
568 Added -R option to force recursion.
[all …]
/openbsd/regress/usr.bin/mandoc/roff/de/
H A Dinfinite.out_ascii4 ddee--iinnffiinniittee - inifinte recursion in a user-defined macro
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/trad/
H A Drecurse-3.c25 macro mac2 /* { dg-bogus "detected recursion" } */
/openbsd/gnu/usr.bin/perl/t/op/
H A Dflip.t91 is $accumulator, <<EOT, 'recursion shares state';
/openbsd/gnu/llvm/compiler-rt/include/sanitizer/
H A Dtsan_interface.h100 void __tsan_mutex_post_lock(void *addr, unsigned flags, int recursion);
/openbsd/gnu/usr.bin/perl/cpan/JSON-PP/t/
H A D013_limit.t16 local $^W; # to silence Deep recursion warnings
/openbsd/gnu/usr.bin/texinfo/doc/
H A Dmacro.texi25 @c expansion text. This takes advantage of the non-recursion feature of
155 such special command is @code{@@allow-recursion}.
159 @@allow-recursion
/openbsd/gnu/usr.bin/perl/lib/
H A Ddiagnostics.t52 like $warning, qr/W recursion/,
57 like $warning, qr/W recursion/,

1234567891011