Home
last modified time | relevance | path

Searched refs:Single (Results 1 – 25 of 200) sorted by relevance

12345678

/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMScheduleV6.td197 // Single-precision FP Unary
203 // Single-precision FP Compare
209 // Single to Double FP Convert
212 // Double to Single FP Convert
227 // Single-precision FP ALU
233 // Single-precision FP Multiply
239 // Single-precision FP MAC
251 // Single-precision FP DIV
257 // Single-precision FP SQRT
275 // Single-precision FP Load
[all …]
H A DARMScheduleA8.td256 // Single-precision FP Unary
265 // Single-precision FP Compare
274 // Single to Double FP Convert
279 // Double to Single FP Convert
302 // Single-precision FP ALU
311 // Single-precision FP Multiply
320 // Single-precision FP MAC
338 // Single-precision FP DIV
348 // Single-precision FP SQRT
380 // Single-precision FP Load
[all …]
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-member-pointers.cpp205 struct Single : B1 { struct
240 int Single ::*s_d_memptr;
259 void (Single ::*s_f_memptr)();
278 void (Single ::*s_f_mp)() = &Single::foo;
344 void (Single ::*s_f_memptr)() = &Single::foo; in EmitNonVirtualMemberPointers()
506 void callMemberPointerSingle(Single *o, void (Single::*memptr)()) { in callMemberPointerSingle()
555 bool compareSingleFunctionMemptr(void (Single::*l)(), void (Single::*r)()) { in compareSingleFunctionMemptr()
569 bool compareNeqSingleFunctionMemptr(void (Single::*l)(), void (Single::*r)()) { in compareNeqSingleFunctionMemptr()
H A Ddllimport-memptr-global.cpp7 struct __declspec(dllimport) Single { struct
31 auto mp_single_nv = &Single::nonvirt; // expected-warning {{global constructor}}
36 auto mp_single_v = &Single::virt;
/llvm-project-15.0.7/llvm/test/MC/RISCV/
H A Drv32fc-valid.s21 # CHECK-NO-EXT-F: error: instruction requires the following: 'F' (Single-Precision Floating-Point)
22 … instruction requires the following: 'C' (Compressed Instructions), 'F' (Single-Precision Floating…
27 # CHECK-NO-EXT-F: error: instruction requires the following: 'F' (Single-Precision Floating-Point)
28 … instruction requires the following: 'C' (Compressed Instructions), 'F' (Single-Precision Floating…
34 # CHECK-NO-EXT-F: error: instruction requires the following: 'F' (Single-Precision Floating-Point)
35 … instruction requires the following: 'C' (Compressed Instructions), 'F' (Single-Precision Floating…
40 # CHECK-NO-EXT-F: error: instruction requires the following: 'F' (Single-Precision Floating-Point)
41 … instruction requires the following: 'C' (Compressed Instructions), 'F' (Single-Precision Floating…
H A Drv32zfinx-invalid.s4 flw fa4, 12(sp) # CHECK: :[[@LINE]]:1: error: instruction requires the following: 'F' (Single-Preci…
5 fadd.s fa0, fa1, fa2 # CHECK: :[[@LINE]]:1: error: instruction requires the following: 'F' (Single-…
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-emplace.cpp607 struct Single { struct
608 Single() = default;
609 Single(const Single &) = default;
610 Single(Single &&) = default;
612 Single(const T &) {} in Single() function
613 Single(T &&) {} in Single() function
616 Single(const Single<U> &) {} in Single() function
618 Single(Single<U> &&) {} in Single() function
621 Single(const std::tuple<U> &) {} in Single() function
623 Single(std::tuple<U> &&) {} in Single() function
[all …]
/llvm-project-15.0.7/llvm/lib/Target/RISCV/
H A DRISCVScheduleV.td93 // 11.1. Vector Single-Width Integer Add and Subtract
108 // 11.6. Vector Single-Width Bit Shift Instructions
121 // 11.10. Vector Single-Width Integer Multiply Instructions
146 // 12.1. Vector Single-Width Saturating Add and Subtract
150 // 12.2. Vector Single-Width Averaging Add and Subtract
156 // 12.4. Vector Single-Width Scaling Shift Instructions
317 // 11.1. Vector Single-Width Integer Add and Subtract
329 // 11.6. Vector Single-Width Bit Shift Instructions
362 // 12.1. Vector Single-Width Saturating Add and Subtract
365 // 12.2. Vector Single-Width Averaging Add and Subtract
[all …]
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h401 Single, enumerator
425 explicit Variant(float V) : Type(PDB_VariantType::Single) { in Variant()
426 Value.Single = V; in Variant()
460 float Single; member
497 VARIANT_WIDTH(Single, 32u) in getBitWidth()
537 case PDB_VariantType::Single: in toAPFloat()
540 return APFloat(Value.Single); in toAPFloat()
564 VARIANT_EQUAL_CASE(Single)
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dmember-pointer-ms.cpp112 struct Single { }; struct
115 static_assert(sizeof(int Single::*) == kSingleDataSize, "");
118 static_assert(sizeof(void (Single::*)()) == kSingleFunctionSize, "");
145 static_assert(sizeof(int Y<Single>::*) == kSingleDataSize, "");
148 static_assert(sizeof(void (Y<Single>::*)()) == kSingleFunctionSize, "");
/llvm-project-15.0.7/lldb/test/API/lang/cpp/nsimport/
H A Dmain.cpp34 namespace Single namespace
66 using Single::single; in main()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DYAMLTraits.h129 enum class QuotingType { None, Single, Double }; enumerator
677 return QuotingType::Single;
682 MaxQuotingNeeded = QuotingType::Single;
684 MaxQuotingNeeded = QuotingType::Single;
686 MaxQuotingNeeded = QuotingType::Single;
688 MaxQuotingNeeded = QuotingType::Single;
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DCharInfo.h167 Single = 1, enumerator
169 SingleAndDouble = static_cast<int>(Single) | static_cast<int>(Double),
180 if ((static_cast<int>(Opt) & static_cast<int>(EscapeChar::Single)) == 0)
/llvm-project-15.0.7/mlir/docs/
H A DQuantization.md111 [Single precision](https://en.wikipedia.org/wiki/Single-precision_floating-point_format))
119 …&= clampToTargetSize(roundToNearestInteger( \frac{real\\_value_{Single}}{scale_{Single}})_{sint32}…
123 In the above, we assume that $real\\_value$ is a Single, $scale$ is a Single,
134 floating point format, frequently Single precision), the following conversion
139 re&al\\_value_{Single} \\\\
140 …t8 \\, or \\, uint16} - zero\\_point_{uint8 \\, or \\, uint16})_{sint32})_{Single} * scale_{Single}
145 integer format, and that $roundToNearestFloat$ returns a Single.
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dsingle-issue-r52.mir25 # CHECK: Single Issue : true;
28 # CHECK: Single Issue : false;
31 # CHECK: Single Issue : false;
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Dmisched-predicate-virtreg.mir14 # CHECK-NEXT: Single Issue : false;
26 # CHECK-NEXT: Single Issue : false;
/llvm-project-15.0.7/llvm/lib/Target/LoongArch/
H A DLoongArch.td32 // Single Precision floating point
35 "'F' (Single-Precision Floating-Point)">;
39 "'F' (Single-Precision Floating-Point)">;
/llvm-project-15.0.7/mlir/include/mlir/Tools/PDLL/ODS/
H A DOperation.h31 enum VariableLengthKind { Single, Optional, Variadic }; enumerator
82 return variableLengthKind != VariableLengthKind::Single; in isVariableLength()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Draw-string-literal.rst15 const char *const SingleLine{"Single line.\n"};
28 const char *const SingleLine{"Single line.\n"};
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTargetOptions.h45 Single, // Use a single table for all indirect jumptable calls. enumerator
57 Single // Single Threaded Environment enumerator
/llvm-project-15.0.7/libc/cmake/modules/
H A DLLVMLibCHeaderRules.cmake13 "HDR" # Single value arguments
57 "DEF_FILE;GEN_HDR" # Single value arguments
/llvm-project-15.0.7/llvm/test/Transforms/LowerTypeTests/Inputs/
H A Dimport-icall.yaml9 Kind: Single
H A Dimport.yaml45 Kind: Single
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DP10InstrResources.td843 // Single crack instructions
853 // Single crack instructions
1153 // Single crack instructions
1164 // Single crack instructions
1190 // Single crack instructions
1345 // Single crack instructions
1352 // Single crack instructions
1367 // Single crack instructions
1468 // Single crack instructions
1861 // Single crack instructions
[all …]
/llvm-project-15.0.7/mlir/lib/Tools/PDLL/ODS/
H A DContext.cpp96 case VariableLengthKind::Single: in print()
123 : VariableLengthKind::Single; in print()

12345678