Home
last modified time | relevance | path

Searched refs:CountType (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DHardwareLoops.cpp191 CountType(Info.CountType), in HardwareLoop()
206 Type *CountType = nullptr; member in __anon430a08060111::HardwareLoop
272 HWLoopInfo.CountType = in TryConvertLoop()
277 ConstantInt::get(HWLoopInfo.CountType, LoopDecrement); in TryConvertLoop()
384 ExitCount->getType() != CountType) in InitLoopCount()
385 ExitCount = SE.getZeroExtendExpr(ExitCount, CountType); in InitLoopCount()
387 ExitCount = SE.getAddExpr(ExitCount, SE.getOne(CountType)); in InitLoopCount()
411 Value *Count = SCEVE.expandCodeFor(ExitCount, CountType, in InitLoopCount()
/third_party/rust/crates/clap/src/builder/
Daction.rs337 Self::Count => Some(AnyValueId::of::<CountType>()), in value_type_id()
344 pub(crate) type CountType = u8; typedef
Dmod.rs59 pub(crate) use action::CountType;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCTargetTransformInfo.cpp531 HWLoopInfo.CountType = TM.isPPC64() ? in isHardwareLoopProfitable()
533 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1); in isHardwareLoopProfitable()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDebugInfoMetadata.h326 typedef PointerUnion<ConstantInt*, DIVariable*> CountType; typedef
328 CountType getCount() const { in getCount()
330 return CountType(cast<ConstantInt>(MD->getValue())); in getCount()
333 return CountType(DV); in getCount()
335 return CountType(); in getCount()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMTargetTransformInfo.cpp1060 HWLoopInfo.CountType = Type::getInt32Ty(C); in isHardwareLoopProfitable()
1061 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1); in isHardwareLoopProfitable()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DTargetTransformInfo.cpp81 if (SE.getTypeSizeInBits(EC->getType()) > CountType->getBitWidth()) in isHardwareLoopCandidate()
/third_party/rust/crates/clap/src/parser/
Dparser.rs1266 .get_one::<crate::builder::CountType>(arg.get_id().as_str()) in react()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfo.h93 IntegerType *CountType = nullptr; member