Home
last modified time | relevance | path

Searched refs:OldWidth (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
DBasicAliasAnalysis.cpp226 unsigned OldWidth = Scale.getBitWidth(); in GetLinearExpression() local
234 Scale = Scale.zext(OldWidth); in GetLinearExpression()
235 Offset = Offset.zext(OldWidth); in GetLinearExpression()
/external/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp288 unsigned OldWidth = Offset.getBitWidth(); in GetLinearExpression() local
289 Offset = Offset.trunc(SmallWidth).sext(NewWidth).zextOrSelf(OldWidth); in GetLinearExpression()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp348 unsigned OldWidth = Offset.getBitWidth(); in GetLinearExpression() local
349 Offset = Offset.trunc(SmallWidth).sext(NewWidth).zextOrSelf(OldWidth); in GetLinearExpression()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86InstrInfo.cpp6404 static bool AdjustBlendMask(unsigned OldMask, unsigned OldWidth, in AdjustBlendMask() argument
6406 assert(((OldWidth % NewWidth) == 0 || (NewWidth % OldWidth) == 0) && in AdjustBlendMask()
6410 if ((OldWidth % NewWidth) == 0) { in AdjustBlendMask()
6411 unsigned Scale = OldWidth / NewWidth; in AdjustBlendMask()
6421 unsigned Scale = NewWidth / OldWidth; in AdjustBlendMask()
6423 for (unsigned i = 0; i != OldWidth; ++i) { in AdjustBlendMask()