Searched refs:suppressed (Results 1 - 25 of 39) sorted by relevance

12

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_interceptors_memintrinsics.h64 bool suppressed = false; \
66 suppressed = IsInterceptorSuppressed(_ctx->interceptor_name); \
67 if (!suppressed && HaveStackTraceBasedSuppressions()) { \
69 suppressed = IsStackTraceSuppressed(&stack); \
72 if (!suppressed) { \
142 bool suppressed = IsInterceptorSuppressed(name); \
143 if (!suppressed && HaveStackTraceBasedSuppressions()) { \
144 suppressed = IsStackTraceSuppressed(&stack); \
146 if (!suppressed) { \
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_interceptors_memintrinsics.h62 bool suppressed = false; \
64 suppressed = IsInterceptorSuppressed(_ctx->interceptor_name); \
65 if (!suppressed && HaveStackTraceBasedSuppressions()) { \
67 suppressed = IsStackTraceSuppressed(&stack); \
70 if (!suppressed) { \
140 bool suppressed = IsInterceptorSuppressed(name); \
141 if (!suppressed && HaveStackTraceBasedSuppressions()) { \
142 suppressed = IsStackTraceSuppressed(&stack); \
144 if (!suppressed) { \
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_interceptors_memintrinsics.h63 bool suppressed = false; \
65 suppressed = IsInterceptorSuppressed(_ctx->interceptor_name); \
66 if (!suppressed && HaveStackTraceBasedSuppressions()) { \
68 suppressed = IsStackTraceSuppressed(&stack); \
71 if (!suppressed) { \
141 bool suppressed = IsInterceptorSuppressed(name); \
142 if (!suppressed && HaveStackTraceBasedSuppressions()) { \
143 suppressed = IsStackTraceSuppressed(&stack); \
145 if (!suppressed) { \
/netbsd-current/external/bsd/byacc/dist/
H A Dmkpar.c10 #define NotSuppressed(p) ((p)->suppressed == 0)
13 #define MaySuppress(p) ((backtrack ? ((p)->suppressed <= 1) : (p)->suppressed == 0))
15 #define StartBacktrack(p) if (backtrack && (p) != NULL && NotSuppressed(p)) (p)->suppressed = 1
17 #define MaySuppress(p) ((p)->suppressed == 0)
263 p->suppressed = 1;
272 pref->suppressed = 2;
277 p->suppressed = 2;
281 pref->suppressed = 2;
286 p->suppressed
[all...]
H A Dverbose.c138 if (p->suppressed == 2)
150 else if (p->suppressed == 1)
218 (p->suppressed == 0 || p->suppressed == 1))
286 if (q->suppressed < 2 && q->action_code == SHIFT)
294 if (p->action_code == SHIFT && p->suppressed == 0)
298 if (backtrack && p->action_code == SHIFT && p->suppressed == 1)
315 if (q->action_code == REDUCE && q->suppressed < 2)
332 if (p->suppressed == 0)
336 if (backtrack && p->suppressed
[all...]
H A Doutput.c497 if (p->suppressed == 0)
511 else if (backtrack && p->suppressed == 1)
/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dmsg_193.c623 void suppressed(void);
635 suppressed();
640 suppressed();
648 suppressed();
660 suppressed();
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_format.inc166 bool suppressed; // suppress assignment ("*")
202 dir->suppressed = true;
324 if (dir.suppressed)
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_common_interceptors_format.inc164 bool suppressed; // suppress assignment ("*")
200 dir->suppressed = true;
322 if (dir.suppressed)
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_common_interceptors_format.inc165 bool suppressed; // suppress assignment ("*")
201 dir->suppressed = true;
323 if (dir.suppressed)
/netbsd-current/external/gpl2/gmake/dist/
H A Dmakefile.com7 $! P3 = WALL will enable all warning messages (some are suppressed since
/netbsd-current/external/lgpl3/gmp/dist/mpn/ia64/
H A Daddmul_2.asm214 (p6) xma.hu fp2a_3 = ux, v1, fp1b_3 C suppressed for addmul_2s
215 (p6) xma.l fp1b_3 = ux, v1, fp1b_3 C suppressed for addmul_2s
235 (p6) xma.hu fp2a_3 = ux, v1, fp1b_3 C suppressed for addmul_2s
237 (p6) xma.l fp1b_3 = ux, v1, fp1b_3 C suppressed for addmul_2s
277 (p14) xma.hu fp2a_2 = ux, v1,fp1b_2 C F suppressed for addmul_2s
279 (p14) xma.l fp1b_2 = ux, v1,fp1b_2 C F suppressed for addmul_2s
321 (p11) xma.hu fp2a_1 = ux, v1, fp1b_1 C suppressed for addmul_2s
322 (p11) xma.l fp1b_1 = ux, v1, fp1b_1 C suppressed for addmul_2s
368 (p11) xma.hu fp2a_1 = ux, v1, fp1b_1 C suppressed for addmul_2s
369 (p11) xma.l fp1b_1 = ux, v1, fp1b_1 C suppressed fo
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_rtl_report.cc54 bool OnReport(const ReportDesc *rep, bool suppressed);
57 bool OnReport(const ReportDesc *rep, bool suppressed) { argument
59 return suppressed;
528 bool suppressed = OnReport(rep, pc_or_addr != 0); local
530 if (suppressed) {
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_rtl_report.cc52 bool OnReport(const ReportDesc *rep, bool suppressed);
55 bool OnReport(const ReportDesc *rep, bool suppressed) { argument
57 return suppressed;
526 bool suppressed = OnReport(rep, pc_or_addr != 0); local
528 if (suppressed) {
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/lsan/
H A Dlsan_common.cpp456 const InternalMmapVector<u32> &suppressed = local
458 uptr idx = InternalLowerBound(suppressed, m.stack_trace_id());
459 if (idx >= suppressed.size() || m.stack_trace_id() != suppressed[idx])
687 // suppressions. However if a stack id was previously suppressed, it should be
688 // suppressed in future checks as well.
716 // We found a new previously unseen suppressed call stack. Rerun to make
718 VReport(1, "Rerun with %zu suppressed stacks.",
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_rtl_report.cpp36 bool OnReport(const ReportDesc *rep, bool suppressed);
39 bool OnReport(const ReportDesc *rep, bool suppressed) { argument
41 return suppressed;
763 bool suppressed = OnReport(rep, pc_or_addr != 0); local
765 if (suppressed) {
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
H A Dtsan_test_util_posix.cc58 bool OnReport(const ReportDesc *rep, bool suppressed) { argument
/netbsd-current/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-format.c1949 const bool suppressed,
2756 const bool suppressed,
2769 || suppressed)
2773 if (suppressed)
2776 "suppressed assignment");
3930 const bool suppressed = flag_chars.assignment_suppression_p (fki);
4014 suppressed,
2750 check_argument_type(const format_char_info *fci, const length_modifier &len_modifier, tree &wanted_type, const char *&wanted_type_name, const bool suppressed, unsigned HOST_WIDE_INT &arg_num, tree &params, const int alloc_flag, const char * const format_start, const char * const type_start, location_t fmt_param_loc, char conversion_char) argument
3928 const bool suppressed = flag_chars.assignment_suppression_p (fki); local
/netbsd-current/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-format.cc1942 const bool suppressed,
2749 const bool suppressed,
2762 || suppressed)
2766 if (suppressed)
2769 "suppressed assignment");
3929 const bool suppressed = flag_chars.assignment_suppression_p (fki);
4013 suppressed,
2743 check_argument_type(const format_char_info *fci, const length_modifier &len_modifier, tree &wanted_type, const char *&wanted_type_name, const bool suppressed, unsigned HOST_WIDE_INT &arg_num, tree &params, const int alloc_flag, const char * const format_start, const char * const type_start, location_t fmt_param_loc, char conversion_char) argument
3927 const bool suppressed = flag_chars.assignment_suppression_p (fki); local
/netbsd-current/sys/netinet/
H A Dip_carp.c2271 int suppressed = sc->sc_suppress; local
2282 if (!suppressed) {
2291 if (suppressed)
/netbsd-current/usr.bin/make/unit-tests/
H A Ddirective-include-guard.mk623 # Some debug output lines are suppressed in the .exp file, see ./Makefile.
/netbsd-current/sys/arch/m68k/060sp/dist/
H A Disp.s1505 btst &0x6,%d5 # is the index suppressed?
1519 btst &0x7,%d5 # is the bd suppressed?
1550 bfextu %d5{&30:&2},%d0 # is od suppressed?
/netbsd-current/external/gpl2/gmake/dist/config/
H A Dtexinfo.tex983 % The paragraph indentation is suppressed or not by calling
2033 % Polish suppressed-l. --karl, 22sep96.
/netbsd-current/external/gpl2/groff/dist/doc/
H A Dtexinfo.tex975 % The paragraph indentation is suppressed or not by calling
1939 % Polish suppressed-l. --karl, 22sep96.
/netbsd-current/external/gpl2/texinfo/dist/doc/
H A Dtexinfo.tex975 % The paragraph indentation is suppressed or not by calling
1939 % Polish suppressed-l. --karl, 22sep96.

Completed in 507 milliseconds

12