Home
last modified time | relevance | path

Searched refs:fallthrough (Results 1 – 25 of 176) sorted by relevance

12345678

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DDemangleConfig.h75 #if __cplusplus > 201402L && __has_cpp_attribute(fallthrough)
76 #define DEMANGLE_FALLTHROUGH [[fallthrough]]
77 #elif __has_cpp_attribute(gnu::fallthrough)
78 #define DEMANGLE_FALLTHROUGH [[gnu::fallthrough]]
83 #elif __has_cpp_attribute(clang::fallthrough)
84 #define DEMANGLE_FALLTHROUGH [[clang::fallthrough]]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DCompiler.h272 #if defined(__cplusplus) && __cplusplus > 201402L && LLVM_HAS_CPP_ATTRIBUTE(fallthrough)
273 #define LLVM_FALLTHROUGH [[fallthrough]]
274 #elif LLVM_HAS_CPP_ATTRIBUTE(gnu::fallthrough)
275 #define LLVM_FALLTHROUGH [[gnu::fallthrough]]
276 #elif __has_attribute(fallthrough)
277 #define LLVM_FALLTHROUGH __attribute__((fallthrough))
278 #elif LLVM_HAS_CPP_ATTRIBUTE(clang::fallthrough)
279 #define LLVM_FALLTHROUGH [[clang::fallthrough]]
/netbsd-src/external/bsd/libfido2/dist/src/
H A Dfallthrough.h12 #if __has_attribute(fallthrough)
13 #define FALLTHROUGH __attribute__((fallthrough));
/netbsd-src/tests/usr.bin/xlint/lint1/
H A Dc23.c193 /* expect+1: warning: fallthrough on case statement [220] */ in attribute_in_switch_statement()
196 [[fallthrough]];
199 [[fallthrough]];
H A Dgcc_attribute_var.c31 * A GCC extension allows statement of the form __attribute__((fallthrough)),
44 __attribute__((fallthrough));
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Drandom.cc244 [[gnu::fallthrough]]; in _M_init()
268 [[gnu::fallthrough]]; in _M_init()
287 [[gnu::fallthrough]]; in _M_init()
/netbsd-src/external/bsd/tcpdump/dist/
H A Dnetdissect-stdinc.h376 #if __has_attribute(fallthrough) && !defined(__clang__)
377 # define ND_FALL_THROUGH __attribute__ ((fallthrough))
/netbsd-src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A DMakefile.bsd15 CPPFLAGS.bzlib.c+= -Wno-error=implicit-fallthrough
16 CPPFLAGS.zlib.c+= -Wno-error=implicit-fallthrough
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A Dhash_bytes.cc98 [[gnu::fallthrough]]; in _Hash_bytes()
101 [[gnu::fallthrough]]; in _Hash_bytes()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Dhash_bytes.cc98 [[gnu::fallthrough]]; in _Hash_bytes()
101 [[gnu::fallthrough]]; in _Hash_bytes()
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
H A Dutil.h71 #if __has_c_attribute(fallthrough)
72 #define FALLTHROUGH [[fallthrough]]
74 #define FALLTHROUGH __attribute__((fallthrough))
/netbsd-src/external/mpl/bind/dist/lib/isc/include/isc/
H A Dutil.h
/netbsd-src/external/mpl/bind/dist/contrib/dlz/modules/include/
H A Ddlz_minimal.h
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DCFIVerify.rst67 target instruction is branched-to, the fallthrough of the branch should be the
69 the fallthrough (i.e. immediately succeeds) of a conditional jump, the
75 fallthrough of a conditional jump), if the target represents a vcall that takes
/netbsd-src/external/bsd/libarchive/dist/libarchive/test/
H A Dtest.h37 #define __LA_FALLTHROUGH __attribute__((fallthrough))
/netbsd-src/external/apache2/llvm/dist/llvm/utils/vscode/llvm/
H A Dtsconfig.json14 …// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement.…
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/pru/
H A Dpru.c2469 rtx_insn *fallthrough; member
2504 rtx_insn *fallthrough; in pru_repeat_loop_p() local
2523 fallthrough = loop->end->fallthrough; in pru_repeat_loop_p()
2526 || !simplejump_p (end->fallthrough) in pru_repeat_loop_p()
2527 || fallthrough in pru_repeat_loop_p()
2528 != next_real_insn (JUMP_LABEL_AS_INSN (end->fallthrough))) in pru_repeat_loop_p()
2583 end->fallthrough = next_real_insn (insn); in pru_reorg_loop()
2590 if (loop->end != 0 && simplejump_p (end->fallthrough)) in pru_reorg_loop()
2671 delete_insn (end->fallthrough); in pru_reorg_loop()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/pru/
H A Dpru.cc2585 rtx_insn *fallthrough; member
2620 rtx_insn *fallthrough; in pru_repeat_loop_p() local
2639 fallthrough = loop->end->fallthrough; in pru_repeat_loop_p()
2642 || !simplejump_p (end->fallthrough) in pru_repeat_loop_p()
2643 || fallthrough in pru_repeat_loop_p()
2644 != next_real_insn (JUMP_LABEL_AS_INSN (end->fallthrough))) in pru_repeat_loop_p()
2699 end->fallthrough = next_real_insn (insn); in pru_reorg_loop()
2706 if (loop->end != 0 && simplejump_p (end->fallthrough)) in pru_reorg_loop()
2781 delete_insn (end->fallthrough); in pru_reorg_loop()
/netbsd-src/external/mpl/bind/dist/m4/
H A Dax_gcc_func_attribute.m443 # fallthrough
137 [fallthrough], [
/netbsd-src/lib/libc/time/
H A Dprivate.h546 # if __has_c_attribute(fallthrough)
547 # define ATTRIBUTE_FALLTHROUGH [[fallthrough]]
552 # define ATTRIBUTE_FALLTHROUGH __attribute__((fallthrough))
/netbsd-src/external/bsd/libevent/dist/
H A Dutil-internal.h354 #if EVUTIL_HAS_ATTRIBUTE(fallthrough) && !defined(__lint__) // XXX: fixme
355 #define EVUTIL_FALLTHROUGH __attribute__((fallthrough))
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DByteCodeEmitter.h66 bool fallthrough(const LabelTy &Label);
H A DEvalEmitter.h68 bool fallthrough(const LabelTy &Label);
/netbsd-src/external/bsd/libarchive/dist/libarchive/
H A Darchive_platform.h213 #define __LA_FALLTHROUGH __attribute__((fallthrough))
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/
H A Dgcov.texi324 "fallthrough": @var{fallthrough},
336 @var{fallthrough}: true when the branch is a fall through branch
747 branch 1 taken 100% (fallthrough)
752 branch 1 taken 100% (fallthrough)
756 branch 1 taken 100% (fallthrough)
761 branch 0 taken 91% (fallthrough)
766 branch 0 taken 0% (fallthrough)
770 branch 0 taken 0% (fallthrough)
779 branch 1 taken 100% (fallthrough)

12345678