Searched refs:InBits (Results 1 – 8 of 8) sorted by relevance
/external/clang/lib/AST/ |
D | RecordLayoutBuilder.cpp | 1874 bool InBits = true; in FinishLayout() local 1877 InBits = false; in FinishLayout() 1882 << (InBits ? 1 : 0); // (byte|bit) in FinishLayout() 1962 bool InBits = true; in CheckFieldPadding() local 1965 InBits = false; in CheckFieldPadding() 1972 << (InBits ? 1 : 0) // (byte|bit) in CheckFieldPadding() 1979 << (InBits ? 1 : 0); // (byte|bit) in CheckFieldPadding()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1871 unsigned InBits = InVT.getScalarType().getSizeInBits(); in ComputeMaskedBits() local 1872 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask; in ComputeMaskedBits() 1873 APInt InMask = Mask.trunc(InBits); in ComputeMaskedBits() 1874 KnownZero = KnownZero.trunc(InBits); in ComputeMaskedBits() 1875 KnownOne = KnownOne.trunc(InBits); in ComputeMaskedBits() 1884 unsigned InBits = InVT.getScalarType().getSizeInBits(); in ComputeMaskedBits() local 1885 APInt InSignBit = APInt::getSignBit(InBits); in ComputeMaskedBits() 1886 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask; in ComputeMaskedBits() 1887 APInt InMask = Mask.trunc(InBits); in ComputeMaskedBits() 1894 KnownZero = KnownZero.trunc(InBits); in ComputeMaskedBits() [all …]
|
D | TargetLowering.cpp | 1660 unsigned InBits = InVT.getScalarType().getSizeInBits(); in SimplifyDemandedBits() local 1661 APInt InMask = APInt::getLowBitsSet(BitWidth, InBits); in SimplifyDemandedBits() 1662 APInt InSignBit = APInt::getBitsSet(BitWidth, InBits - 1, InBits); in SimplifyDemandedBits() 1675 InDemandedBits = InDemandedBits.trunc(InBits); in SimplifyDemandedBits()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 71 unsigned InBits = 0) { in getGVAlignmentLog2() argument 77 if (InBits > NumBits) in getGVAlignmentLog2() 78 NumBits = InBits; in getGVAlignmentLog2() 1506 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType()); in LowerConstant() local 1507 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx); in LowerConstant()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 79 unsigned InBits = 0) { in getGVAlignmentLog2() argument 85 if (InBits > NumBits) in getGVAlignmentLog2() 86 NumBits = InBits; in getGVAlignmentLog2() 1832 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); in lowerConstant() local 1833 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); in lowerConstant()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 2268 unsigned InBits = InVT.getScalarType().getSizeInBits(); in computeKnownBits() local 2269 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits); in computeKnownBits() 2270 KnownZero = KnownZero.trunc(InBits); in computeKnownBits() 2271 KnownOne = KnownOne.trunc(InBits); in computeKnownBits() 2280 unsigned InBits = InVT.getScalarType().getSizeInBits(); in computeKnownBits() local 2281 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits); in computeKnownBits() 2283 KnownZero = KnownZero.trunc(InBits); in computeKnownBits() 2284 KnownOne = KnownOne.trunc(InBits); in computeKnownBits() 2303 unsigned InBits = InVT.getScalarType().getSizeInBits(); in computeKnownBits() local 2304 KnownZero = KnownZero.trunc(InBits); in computeKnownBits() [all …]
|
D | TargetLowering.cpp | 983 unsigned InBits = InVT.getScalarType().getSizeInBits(); in SimplifyDemandedBits() local 984 APInt InMask = APInt::getLowBitsSet(BitWidth, InBits); in SimplifyDemandedBits() 985 APInt InSignBit = APInt::getBitsSet(BitWidth, InBits - 1, InBits); in SimplifyDemandedBits() 998 InDemandedBits = InDemandedBits.trunc(InBits); in SimplifyDemandedBits()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 2148 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); in lowerConstantForGV() local 2149 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); in lowerConstantForGV()
|