Searched defs:EltSizeInBits (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp2188 Type *getMMXVectorTy(unsigned EltSizeInBits) { argument
2190 return VectorType::get(IntegerType::get(*MS.C, EltSizeInBits),
2191 X86_MMXSizeInBits / EltSizeInBits);
2231 // EltSizeInBits is used only for x86mmx arguments.
2232 void handleVectorPackIntrinsic(IntrinsicInst &I, unsigned EltSizeInBits = 0) {
2243 Type *T = isX86_MMX ? getMMXVectorTy(EltSizeInBits) : S1->getType();
2289 unsigned EltSizeInBits = 0) {
2291 Type *ResTy = isX86_MMX ? getMMXVectorTy(EltSizeInBits * 2) : I.getType();
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp4053 unsigned EltSizeInBits = VT.getScalarSizeInBits(); local
4064 if ((LShVal + RShVal) != EltSizeInBits)
4072 APInt AllBits = APInt::getAllOnesValue(EltSizeInBits);
4076 APInt RHSBits = APInt::getLowBitsSet(EltSizeInBits, LShVal);
4082 APInt LHSBits = APInt::getHighBitsSet(EltSizeInBits, RShVal);

Completed in 5646 milliseconds