Home
last modified time | relevance | path

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

12345678910>>...23

/freebsd/contrib/processor-trace/include/
H A Dpt_compiler.h38 #if !defined(fallthrough)
39 # if (__has_attribute(fallthrough))
40 # define fallthrough __attribute__((fallthrough)) macro
42 # define fallthrough /* Fall through. */ macro
/freebsd/contrib/llvm-project/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]]
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_siphash.c68 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __siphash_aligned()
69 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __siphash_aligned()
70 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __siphash_aligned()
72 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __siphash_aligned()
102 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __siphash_unaligned()
103 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __siphash_unaligned()
104 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __siphash_unaligned()
106 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __siphash_unaligned()
270 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __hsiphash_aligned()
271 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __hsiphash_aligned()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86InstComments.cpp334 [[fallthrough]]; in printFMAComments()
349 [[fallthrough]]; in printFMAComments()
366 [[fallthrough]]; in printFMAComments()
383 [[fallthrough]]; in printFMAComments()
401 [[fallthrough]]; in printFMAComments()
415 [[fallthrough]]; in printFMAComments()
431 [[fallthrough]]; in printFMAComments()
442 [[fallthrough]]; in printFMAComments()
453 [[fallthrough]]; in printFMAComments()
464 [[fallthrough]]; in printFMAComments()
[all …]
H A DX86WinCOFFObjectWriter.cpp80 [[fallthrough]]; in getRelocType()
106 [[fallthrough]]; in getRelocType()
/freebsd/contrib/llvm-project/third-party/siphash/include/siphash/
H A DSipHash.h107 [[fallthrough]]; in siphash()
110 [[fallthrough]]; in siphash()
113 [[fallthrough]]; in siphash()
116 [[fallthrough]]; in siphash()
119 [[fallthrough]]; in siphash()
122 [[fallthrough]]; in siphash()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCompiler.h395 #if defined(__cplusplus) && __cplusplus > 201402L && LLVM_HAS_CPP_ATTRIBUTE(fallthrough)
396 #define LLVM_FALLTHROUGH [[fallthrough]]
397 #elif LLVM_HAS_CPP_ATTRIBUTE(gnu::fallthrough)
398 #define LLVM_FALLTHROUGH [[gnu::fallthrough]]
399 #elif __has_attribute(fallthrough)
400 #define LLVM_FALLTHROUGH __attribute__((fallthrough))
401 #elif LLVM_HAS_CPP_ATTRIBUTE(clang::fallthrough)
402 #define LLVM_FALLTHROUGH [[clang::fallthrough]]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600AsmPrinter.cpp74 default: [[fallthrough]]; in EmitProgramInfoR600()
83 default: [[fallthrough]]; in EmitProgramInfoR600()
84 case CallingConv::AMDGPU_GS: [[fallthrough]]; in EmitProgramInfoR600()
85 case CallingConv::AMDGPU_CS: [[fallthrough]]; in EmitProgramInfoR600()
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DX86.cpp614 [[fallthrough]]; in getTargetDefines()
623 [[fallthrough]]; in getTargetDefines()
627 [[fallthrough]]; in getTargetDefines()
710 [[fallthrough]]; in getTargetDefines()
719 [[fallthrough]]; in getTargetDefines()
851 [[fallthrough]]; in getTargetDefines()
854 [[fallthrough]]; in getTargetDefines()
857 [[fallthrough]]; in getTargetDefines()
1042 [[fallthrough]]; in getTargetDefines()
1045 [[fallthrough]]; in getTargetDefines()
[all …]
H A DWebAssembly.cpp132 [[fallthrough]]; in setSIMDLevel()
135 [[fallthrough]]; in setSIMDLevel()
146 [[fallthrough]]; in setSIMDLevel()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.cpp121 case SPCC::CPCC_3: [[fallthrough]]; in GetOppositeBranchCondition()
122 case SPCC::CPCC_2: [[fallthrough]]; in GetOppositeBranchCondition()
123 case SPCC::CPCC_23: [[fallthrough]]; in GetOppositeBranchCondition()
124 case SPCC::CPCC_1: [[fallthrough]]; in GetOppositeBranchCondition()
125 case SPCC::CPCC_13: [[fallthrough]]; in GetOppositeBranchCondition()
126 case SPCC::CPCC_12: [[fallthrough]]; in GetOppositeBranchCondition()
127 case SPCC::CPCC_123: [[fallthrough]]; in GetOppositeBranchCondition()
128 case SPCC::CPCC_0: [[fallthrough]]; in GetOppositeBranchCondition()
129 case SPCC::CPCC_03: [[fallthrough]]; in GetOppositeBranchCondition()
130 case SPCC::CPCC_02: [[fallthrough]]; in GetOppositeBranchCondition()
[all …]
/freebsd/contrib/libfido2/src/
H A Dfallthrough.h12 #if __has_attribute(fallthrough)
13 #define FALLTHROUGH __attribute__((fallthrough));
/freebsd/contrib/expat/lib/
H A Dfallthrough.h45 # if __has_attribute(fallthrough)
47 # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DTargetParser.cpp552 [[fallthrough]]; in fillAMDGPUFeatureMap()
585 [[fallthrough]]; in fillAMDGPUFeatureMap()
591 [[fallthrough]]; in fillAMDGPUFeatureMap()
624 [[fallthrough]]; in fillAMDGPUFeatureMap()
631 [[fallthrough]]; in fillAMDGPUFeatureMap()
638 [[fallthrough]]; in fillAMDGPUFeatureMap()
647 [[fallthrough]]; in fillAMDGPUFeatureMap()
657 [[fallthrough]]; in fillAMDGPUFeatureMap()
665 [[fallthrough]]; in fillAMDGPUFeatureMap()
/freebsd/sys/dev/qat/qat_common/
H A Dadf_pfvf_vf_msg.c140 fallthrough; in adf_vf2pf_get_capabilities()
147 fallthrough; in adf_vf2pf_get_capabilities()
155 fallthrough; in adf_vf2pf_get_capabilities()
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dcompiler.h255 # if ZSTD_HAS_C_ATTRIBUTE(fallthrough)
256 # define ZSTD_FALLTHROUGH [[fallthrough]]
257 # elif ZSTD_HAS_CPP_ATTRIBUTE(fallthrough)
258 # define ZSTD_FALLTHROUGH [[fallthrough]]
/freebsd/sys/contrib/zstd/lib/common/
H A Dcompiler.h254 # if ZSTD_HAS_C_ATTRIBUTE(fallthrough)
255 # define ZSTD_FALLTHROUGH [[fallthrough]]
256 # elif ZSTD_HAS_CPP_ATTRIBUTE(fallthrough)
257 # define ZSTD_FALLTHROUGH [[fallthrough]]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCRegisterInfo.cpp86 [[fallthrough]]; in replaceFrameIndex()
90 [[fallthrough]]; in replaceFrameIndex()
101 [[fallthrough]]; in replaceFrameIndex()
104 [[fallthrough]]; in replaceFrameIndex()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp574 [[fallthrough]]; in completeHVXFeatures()
577 [[fallthrough]]; in completeHVXFeatures()
580 [[fallthrough]]; in completeHVXFeatures()
583 [[fallthrough]]; in completeHVXFeatures()
586 [[fallthrough]]; in completeHVXFeatures()
589 [[fallthrough]]; in completeHVXFeatures()
592 [[fallthrough]]; in completeHVXFeatures()
595 [[fallthrough]]; in completeHVXFeatures()
598 [[fallthrough]]; in completeHVXFeatures()
601 [[fallthrough]]; in completeHVXFeatures()
H A DHexagonAsmBackend.cpp458 [[fallthrough]]; in fixupNeedsRelaxationAdvanced()
688 [[fallthrough]]; in applyFixup()
698 [[fallthrough]]; in applyFixup()
710 [[fallthrough]]; in applyFixup()
721 [[fallthrough]]; in applyFixup()
733 [[fallthrough]]; in applyFixup()
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dparser_std_format_spec.h183 [[fallthrough]]; in __parse_chrono_specs()
241 [[fallthrough]]; in __parse_conversion_spec()
263 [[fallthrough]]; in __parse_conversion_spec()
277 [[fallthrough]]; in __parse_conversion_spec()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubCommon.cpp67 [[fallthrough]]; in output()
72 [[fallthrough]]; in output()
77 [[fallthrough]]; in output()
/freebsd/contrib/tcpdump/
H A Dnetdissect-stdinc.h361 #if __has_attribute(fallthrough) && !defined(__clang__)
362 # define ND_FALL_THROUGH __attribute__ ((fallthrough))
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_internal_defs.h273 #if __has_cpp_attribute(clang::fallthrough)
274 # define FALLTHROUGH [[clang::fallthrough]]
275 #elif __has_cpp_attribute(fallthrough)
276 # define FALLTHROUGH [[fallthrough]]
/freebsd/sys/contrib/openzfs/config/
H A Dalways-compiler-options.m4235 dnl # Check if cc supports -Wimplicit-fallthrough option.
238 AC_MSG_CHECKING([whether $CC supports -Wimplicit-fallthrough])
241 CFLAGS="$CFLAGS -Werror -Wimplicit-fallthrough"
244 IMPLICIT_FALLTHROUGH=-Wimplicit-fallthrough
246 [Define if compiler supports -Wimplicit-fallthrough])

12345678910>>...23