Searched refs:InBits (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/AST/
H A DRecordLayoutBuilder.cpp1814 bool InBits = true; local
1817 InBits = false;
1822 << (InBits ? 1 : 0) /*(byte|bit)*/ << (PadSize > 1); // plural or not
1908 bool InBits = true; local
1911 InBits = false;
1918 << (InBits ? 1 : 0) /*(byte|bit)*/ << (PadSize > 1) // plural or not
1925 << (InBits ? 1 : 0) /*(byte|bit)*/ << (PadSize > 1); // plural or not
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp78 unsigned InBits = 0) {
83 // If InBits is specified, round it to it.
84 if (InBits > NumBits)
85 NumBits = InBits;
1645 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); local
1646 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2167 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
2168 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
2169 KnownZero = KnownZero.trunc(InBits);
2170 KnownOne = KnownOne.trunc(InBits);
2179 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
2180 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
2182 KnownZero = KnownZero.trunc(InBits);
2183 KnownOne = KnownOne.trunc(InBits);
2202 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
2203 KnownZero = KnownZero.trunc(InBits);
2212 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
[all...]
H A DTargetLowering.cpp903 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
904 APInt InMask = APInt::getLowBitsSet(BitWidth, InBits);
905 APInt InSignBit = APInt::getBitsSet(BitWidth, InBits - 1, InBits);
918 InDemandedBits = InDemandedBits.trunc(InBits);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp222 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType()); local
224 MCConstantExpr::Create(~0ULL >> (64 - InBits), Ctx);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp12503 unsigned InBits = VOp0.getValueSizeInBits();
12505 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
20535 unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
20536 APInt Mask = APInt::getAllOnesValue(InBits);

Completed in 141 milliseconds