Home
last modified time | relevance | path

Searched refs:Quantity (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCharUnits.h75 Quantity += Other.Quantity;
86 Quantity -= Other.Quantity;
99 return Quantity == Other.Quantity;
102 return Quantity != Other.Quantity;
107 return Quantity < Other.Quantity;
110 return Quantity <= Other.Quantity;
113 return Quantity > Other.Quantity;
116 return Quantity >= Other.Quantity;
136 return (Quantity & -Quantity) == Quantity; in isPowerOfTwo()
163 return Quantity / Other.Quantity;
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DTypeSize.h93 ScalarTy Quantity = 0;
98 : Quantity(Quantity), Scalable(Scalable) {} in FixedOrScalableQuantity()
101 assert((LHS.Quantity == 0 || RHS.Quantity == 0 ||
104 LHS.Quantity += RHS.Quantity;
111 assert((LHS.Quantity == 0 || RHS.Quantity == 0 ||
114 LHS.Quantity -= RHS.Quantity;
121 LHS.Quantity *= RHS;
149 return Quantity == RHS.Quantity && Scalable == RHS.Scalable;
153 return Quantity != RHS.Quantity || Scalable != RHS.Scalable;
164 return LeafTy::get(Quantity + RHS, Scalable); in getWithIncrement()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DRetireControlUnit.h65 unsigned normalizeQuantity(unsigned Quantity) const { in normalizeQuantity()
69 Quantity = std::min(Quantity, NumROBEntries); in normalizeQuantity()
74 return std::max(Quantity, 1U); in normalizeQuantity()
84 bool isAvailable(unsigned Quantity = 1) const {
85 return AvailableEntries >= normalizeQuantity(Quantity);
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleHazardRecognizer.h120 virtual void EmitNoops(unsigned Quantity) { in EmitNoops() argument
122 for (unsigned i = 0; i < Quantity; ++i) in EmitNoops()
H A DTargetInstrInfo.h1548 unsigned Quantity) const;
/freebsd/sys/contrib/device-tree/Bindings/serial/
H A D8250.yaml151 description: Quantity to shift the register offsets by.
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNHazardRecognizer.cpp263 unsigned Quantity) { in insertNoopsInBundle() argument
264 while (Quantity > 0) { in insertNoopsInBundle()
265 unsigned Arg = std::min(Quantity, 8u); in insertNoopsInBundle()
266 Quantity -= Arg; in insertNoopsInBundle()
H A DSIInstrInfo.h1188 unsigned Quantity) const override;
H A DSIInstrInfo.cpp2002 unsigned Quantity) const { in insertNoops()
2004 while (Quantity > 0) { in insertNoops()
2005 unsigned Arg = std::min(Quantity, 8u); in insertNoops()
2006 Quantity -= Arg; in insertNoops()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp77 unsigned Quantity) const { in insertNoops()
78 for (unsigned i = 0; i < Quantity; ++i) in insertNoops()