Home
last modified time | relevance | path

Searched refs:KnownSize (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/llvm/unittests/Analysis/
DTFUtilsTest.cpp42 const static int64_t KnownSize = 214; in TEST() local
44 "serving_default_input_1", {1, KnownSize})}; in TEST()
53 for (auto I = 0; I < KnownSize; ++I) { in TEST()
65 for (auto I = 0; I < KnownSize; ++I) { in TEST()
83 const static int64_t KnownSize = 213; in TEST() local
85 "serving_default_input_1", {1, KnownSize})}; in TEST()
94 for (auto I = 0; I < KnownSize; ++I) { in TEST()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPULowerKernelAttributes.cpp201 ConstantInt *KnownSize in processUse() local
203 SI->replaceAllUsesWith(ConstantExpr::getIntegerCast(KnownSize, in processUse()
225 ConstantInt *KnownSize = mdconst::extract<ConstantInt>(MD->getOperand(I)); in processUse() local
227 ConstantExpr::getIntegerCast(KnownSize, in processUse()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULowerKernelAttributes.cpp201 ConstantInt *KnownSize in processUse() local
203 SI->replaceAllUsesWith(ConstantExpr::getIntegerCast(KnownSize, in processUse()
225 ConstantInt *KnownSize = mdconst::extract<ConstantInt>(MD->getOperand(I)); in processUse() local
227 ConstantExpr::getIntegerCast(KnownSize, in processUse()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DVLASizeChecker.cpp107 uint64_t KnownSize = 0; in checkVLA() local
109 KnownSize = KV->getZExtValue(); in checkVLA()
135 if (KnownSize <= SizeMax / IndexL) { in checkVLA()
136 KnownSize *= IndexL; in checkVLA()
143 KnownSize = 0; in checkVLA()
/external/llvm-project/polly/lib/Analysis/
DScopInfo.cpp331 auto *KnownSize = DimensionSizes[i + ExtraDimsOld]; in updateSizes() local
332 if (NewSize && KnownSize && NewSize != KnownSize) in updateSizes()