Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAttributes.cpp2421 uint64_t OldWidth; in updateMinLegalVectorWidthAttr() local
2422 Attr.getValueAsString().getAsInteger(0, OldWidth); in updateMinLegalVectorWidthAttr()
2423 if (Width > OldWidth) in updateMinLegalVectorWidthAttr()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp8903 static bool AdjustBlendMask(unsigned OldMask, unsigned OldWidth, in AdjustBlendMask() argument
8905 assert(((OldWidth % NewWidth) == 0 || (NewWidth % OldWidth) == 0) && in AdjustBlendMask()
8909 if ((OldWidth % NewWidth) == 0) { in AdjustBlendMask()
8910 unsigned Scale = OldWidth / NewWidth; in AdjustBlendMask()
8920 unsigned Scale = NewWidth / OldWidth; in AdjustBlendMask()
8922 for (unsigned i = 0; i != OldWidth; ++i) { in AdjustBlendMask()