| /llvm-project-15.0.7/libcxx/test/support/ |
| H A D | test_transparent_unordered.h | 101 int conversions = 0; in test_transparent_find() local 105 assert(conversions == 0); in test_transparent_find() 110 int conversions = 0; in test_non_transparent_find() local 112 assert(conversions == 1); in test_non_transparent_find() 114 assert(conversions == 2); in test_non_transparent_find() 121 int conversions = 0; in test_transparent_count() local 130 int conversions = 0; in test_non_transparent_count() local 141 int conversions = 0; in test_transparent_contains() local 150 int conversions = 0; in test_non_transparent_contains() local 161 int conversions = 0; in test_transparent_equal_range() local [all …]
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | narrowing-conversions.rst | 1 .. title:: clang-tidy - bugprone-narrowing-conversions 3 :http-equiv=refresh: 5;URL=../cppcoreguidelines/narrowing-conversions.html 5 bugprone-narrowing-conversions 8 The bugprone-narrowing-conversions check is an alias, please see 9 `cppcoreguidelines-narrowing-conversions <../cppcoreguidelines/narrowing-conversions.html>`_
|
| H A D | swapped-arguments.rst | 6 Finds potentially swapped arguments by looking at implicit conversions.
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/ |
| H A D | narrowing-conversions.rst | 1 .. title:: clang-tidy - cppcoreguidelines-narrowing-conversions 3 cppcoreguidelines-narrowing-conversions 6 Checks for silent narrowing conversions, e.g: ``int i = 0; i += 0.1;``. While 13 …ines/blob/master/CppCoreGuidelines.md#es46-avoid-lossy-narrowing-truncating-arithmetic-conversions. 15 We enforce only part of the guideline, more specifically, we flag narrowing conversions from: 25 - All narrowing conversions that are not marked by an explicit cast (c-style or 28 - All applications of binary operators with a narrowing conversions. 52 When `true`, the check will warn on narrowing conversions within template 57 When `true`, the check will warn on narrowing conversions that arise from 63 Narrowing conversions from any type in this semicolon-separated list will be
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/LLVMIR/ |
| H A D | CMakeLists.txt | 33 mlir_tablegen(LLVMConversions.inc -gen-llvmir-conversions) 34 mlir_tablegen(LLVMConversionEnumsToLLVM.inc -gen-enum-to-llvmir-conversions) 35 mlir_tablegen(LLVMConversionEnumsFromLLVM.inc -gen-enum-from-llvmir-conversions) 39 mlir_tablegen(LLVMIntrinsicConversions.inc -gen-llvmir-conversions) 46 mlir_tablegen(NVVMConversions.inc -gen-llvmir-conversions) 56 mlir_tablegen(ROCDLConversions.inc -gen-llvmir-conversions)
|
| /llvm-project-15.0.7/llvm/test/MC/ARM/ |
| H A D | neon-vcvt-fp16.s | 7 @ CHECK-NOFP16: instruction requires: half-float conversions 10 @ CHECK-NOFP16: instruction requires: half-float conversions 14 @ CHECK-NOFP16: instruction requires: half-float conversions 17 @ CHECK-NOFP16: instruction requires: half-float conversions
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/ |
| H A D | implicit-bool-conversion.rst | 6 This check can be used to find implicit conversions between built-in types and 9 conversions. 84 - in case of conversions from other built-in type to bool, an explicit 98 - in case of conversions from bool to other built-in types, an explicit 121 Occurrences of implicit conversions inside macros and template instantiations 129 When `true`, the check will allow conditional integer conversions. Default 134 When `true`, the check will allow conditional pointer conversions. Default
|
| /llvm-project-15.0.7/llvm/test/CodeGen/SystemZ/ |
| H A D | fp-conv-08.ll | 1 ; Test conversions of unsigned i64s to floating-point values (z10 only). 5 ; Test i64->f32. There's no native support for unsigned i64-to-fp conversions, 6 ; but we should be able to implement them using signed i64-to-fp conversions.
|
| H A D | fp-strict-conv-08.ll | 1 ; Test strict conversions of unsigned i64s to floating-point values (z10 only). 9 ; Test i64->f32. There's no native support for unsigned i64-to-fp conversions, 10 ; but we should be able to implement them using signed i64-to-fp conversions.
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/clang-tools-extra/clangd/xpc/ |
| H A D | BUILD.gn | 1 static_library("conversions") { 17 ":conversions",
|
| /llvm-project-15.0.7/llvm/test/Transforms/InstCombine/ |
| H A D | 2006-12-05-fp-to-int-ext.ll | 3 ; Never merge these two conversions, even though it's possible: this is 4 ; significantly more expensive than the two conversions on some targets
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | SYCLSupport.rst | 37 following conversions: 39 - explicit conversions to/from the default address space from/to the address 41 - implicit conversions from the address space-attributed type to the default 43 - explicit conversions to/from the global address space from/to the 46 - implicit conversions from the ``__attribute__((opencl_global_device))`` or
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | format-strings-objc.m | 91 NSLog(@"%@!"); // expected-warning{{more '%' conversions than data arguments}} 106 MyNSLog(@"%@"); // expected-warning {{more '%' conversions than data arguments}} 107 …MyCFStringCreateWithFormat(CFSTR("%@")); // expected-warning {{more '%' conversions than data argu… 117 [Foo fooWithFormat:@"%@"]; // expected-warning {{more '%' conversions than data arguments}} 128 printf(s1); // expected-warning {{more '%' conversions than data arguments}} 131 printf(s2); // expected-warning {{more '%' conversions than data arguments}} 137 NSLog(ns1); // expected-warning {{more '%' conversions than data arguments}} 140 NSLog(ns2); // expected-warning {{more '%' conversions than data arguments}} 146 NSLog(ns6); // expected-warning {{more '%' conversions than data arguments}} 322 …NSLog([self str: @"%@ %@"], @"name"); // expected-warning {{more '%' conversions than data argumen… [all …]
|
| H A D | format-strings-oslog.m | 15 …__builtin_os_log_format(buf, "%d"); // expected-warning {{more '%' conversions than data arguments… 51 …__builtin_os_log_format(buf, @"%d"); // expected-warning {{more '%' conversions than data argument… 67 MyOSLog("%d"); // expected-warning {{more '%' conversions than data arguments}}
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Overload.h | 437 ConversionSet &conversions() { in conversions() function 441 const ConversionSet &conversions() const { in conversions() function 446 conversions().push_back(std::make_pair(Found, D)); in addConversion() 451 iterator begin() { return conversions().begin(); } in begin() 452 iterator end() { return conversions().end(); } in end() 456 const_iterator begin() const { return conversions().begin(); } in begin() 457 const_iterator end() const { return conversions().end(); } in end()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/hicpp/ |
| H A D | explicit-conversions.rst | 1 .. title:: clang-tidy - hicpp-explicit-conversions 5 hicpp-explicit-conversions
|
| /llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/CPU/ |
| H A D | sparse_conversion_dyn.mlir | 17 // Integration test that tests conversions between sparse tensors, 41 // Four dense to sparse conversions. 47 // Two cross conversions.
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/ |
| H A D | indirectbr-3.ll | 23 ; Make sure no diamond conversions occurred while compiling this file. 25 ; CHECK-NOT: 1 ifcvt - Number of diamond if-conversions performed
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/abseil/ |
| H A D | duration-unnecessary-conversion.rst | 17 // Suggestion - Remove unnecessary conversions 34 // Suggestion - Remove unnecessary conversions
|
| H A D | upgrade-duration-conversions.rst | 1 .. title:: clang-tidy - abseil-upgrade-duration-conversions 3 abseil-upgrade-duration-conversions
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Linalg/Transforms/ |
| H A D | Detensorize.cpp | 104 SmallVector<TypeConverter::SignatureConversion, 2> conversions; in matchAndRewrite() local 107 conversions.emplace_back(block.getNumArguments()); in matchAndRewrite() 108 TypeConverter::SignatureConversion &back = conversions.back(); in matchAndRewrite() 122 conversions))) { in matchAndRewrite()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | cvt16.ll | 7 ; This is a test for float to half float conversions on x86-64. 10 ; 1) half float to float conversions are 13 ; 2) float to half float conversions are translated into calls 20 ; 2) float to half float conversions are translated using
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/clang-analyzer/ |
| H A D | osx.NumberObjectConversion.rst | 6 Check for erroneous conversions of objects representing numbers into numbers
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/ArmNeon/ |
| H A D | CMakeLists.txt | 5 mlir_tablegen(ArmNeonConversions.inc -gen-llvmir-conversions)
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/AMX/ |
| H A D | CMakeLists.txt | 5 mlir_tablegen(AMXConversions.inc -gen-llvmir-conversions)
|