HomeSort by: relevance | last modified time | path
    Searched defs:Fixed (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
NativeFormatting.h 17 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
TypeSize.h 39 // fixed and scalable component.
121 // StackOffset - Represent an offset with named fixed and scalable components.
131 /// named fixed and scalable, respectively. This class allows a value for both
136 StackOffset(ScalarTy Fixed, ScalarTy Scalable)
137 : LinearPolyBase<StackOffset>({Fixed, Scalable}) {}
143 static StackOffset getFixed(ScalarTy Fixed) { return {Fixed, 0}; }
145 static StackOffset get(ScalarTy Fixed, ScalarTy Scalable) {
146 return {Fixed, Scalable};
156 // This can e.g. be used to describe sizes that are either fixed or scalable
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFixBrTableDefaults.cpp 167 auto *Fixed = fixBrTableDefault(MI, MBB, MF);
168 if (Fixed != nullptr) {
169 MBBSet.erase(Fixed);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonBlockRanges.h 85 : std::pair<IndexType,IndexType>(Start, End), Fixed(F), TiedEnd(T) {}
98 bool Fixed = false; // Can be renamed? "Fixed" means "no".
110 void add(IndexType Start, IndexType End, bool Fixed, bool TiedEnd) {
111 push_back(IndexRange(Start, End, Fixed, TiedEnd));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitCodes.h 102 Fixed = 1, // A fixed width field, Val specifies number of bits.
105 Char6 = 4, // A 6-bit fixed field which maps to [a-zA-Z0-9._].
129 case Fixed:
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
InterferenceCache.h 10 // fixed RegUnit interference, and register masks.
79 /// Fixed interference in RegUnit.
80 LiveRange *Fixed = nullptr;
82 /// Iterator pointing into the fixed RegUnit interference.
135 // much memory. Instead, a fixed number of cache entries are used in a round-
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FalkorHWPFFix.cpp 733 bool Fixed = false;
805 Fixed = true;
809 if (!Fixed)
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
RDFGraph.h 144 // ! - fixed register (appears after register name).
177 // - Fixed: the register in this def/use cannot be replaced with any other
288 Fixed = 0x0010 << 5, // 0010000, Fixed register.
  /src/external/mit/isl/dist/interface/
template_cpp.cc 108 struct Fixed {
116 TupleKindPtr::TupleKindPtr(Fixed) : Base(std::make_shared<TupleKind>(""))
122 static TupleKindPtr Ctx{Fixed()};
123 static TupleKindPtr Integer{Fixed()};
124 static TupleKindPtr Str{Fixed()};
125 static TupleKindPtr Res{Fixed()};
945 * is a multi-union-expression, then the space is the fixed range space
961 * in which case it has a fixed range space and the space of the object
1159 * that adds the fixed Anonymous tuple kind.
1439 /* A template type printer for printing types with a fixed kind
    [all...]

Completed in 63 milliseconds