Searched refs:Quantity (Results 1 - 9 of 9) sorted by relevance

/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DCharUnits.h43 QuantityType Quantity = 0; member in class:clang::CharUnits
45 explicit CharUnits(QuantityType C) : Quantity(C) {}
63 static CharUnits fromQuantity(QuantityType Quantity) { argument
64 return CharUnits(Quantity);
69 static CharUnits fromQuantity(llvm::Align Quantity) { argument
70 return CharUnits(Quantity.value());
75 Quantity += Other.Quantity;
79 ++Quantity;
83 return CharUnits(Quantity
234 clang::CharUnits::QuantityType Quantity = local
241 clang::CharUnits::QuantityType Quantity = local
248 clang::CharUnits::QuantityType Quantity = CU.getQuantity(); local
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DRetireControlUnit.h65 unsigned normalizeQuantity(unsigned Quantity) const {
69 Quantity = std::min(Quantity, NumROBEntries);
74 return std::max(Quantity, 1U);
84 bool isAvailable(unsigned Quantity = 1) const {
85 return AvailableEntries >= normalizeQuantity(Quantity);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DTypeSize.h93 ScalarTy Quantity = 0; member in class:llvm::details::FixedOrScalableQuantity
97 constexpr FixedOrScalableQuantity(ScalarTy Quantity, bool Scalable) argument
98 : Quantity(Quantity), Scalable(Scalable) {}
101 assert((LHS.Quantity == 0 || RHS.Quantity == 0 ||
104 LHS.Quantity += RHS.Quantity;
111 assert((LHS.Quantity == 0 || RHS.Quantity
326 TypeSize(ScalarTy Quantity, bool Scalable) argument
329 get(ScalarTy Quantity, bool Scalable) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleHazardRecognizer.h120 virtual void EmitNoops(unsigned Quantity) { argument
122 for (unsigned i = 0; i < Quantity; ++i)
H A DTargetInstrInfo.h1548 unsigned Quantity) const;
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNHazardRecognizer.cpp263 unsigned Quantity) {
264 while (Quantity > 0) {
265 unsigned Arg = std::min(Quantity, 8u);
266 Quantity -= Arg;
262 insertNoopsInBundle(MachineInstr *MI, const SIInstrInfo &TII, unsigned Quantity) argument
H A DSIInstrInfo.h1188 unsigned Quantity) const override;
H A DSIInstrInfo.cpp2002 unsigned Quantity) const {
2004 while (Quantity > 0) {
2005 unsigned Arg = std::min(Quantity, 8u);
2006 Quantity -= Arg;
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp77 unsigned Quantity) const {
78 for (unsigned i = 0; i < Quantity; ++i)

Completed in 227 milliseconds