Searched defs:InBits (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp2122 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); local
2123 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx);
/external/clang/lib/AST/
H A DRecordLayoutBuilder.cpp1861 bool InBits = true; local
1864 InBits = false;
1869 << (InBits ? 1 : 0); // (byte|bit)
1949 bool InBits = true; local
1952 InBits = false;
1959 << (InBits ? 1 : 0) // (byte|bit)
1966 << (InBits ? 1 : 0); // (byte|bit)
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp80 unsigned InBits = 0) {
85 // If InBits is specified, round it to it.
86 if (InBits > NumBits)
87 NumBits = InBits;
1801 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); local
1802 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp942 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
943 APInt InMask = APInt::getLowBitsSet(BitWidth, InBits);
944 APInt InSignBit = APInt::getBitsSet(BitWidth, InBits - 1, InBits);
957 InDemandedBits = InDemandedBits.trunc(InBits);
H A DSelectionDAG.cpp2294 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
2295 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
2296 KnownZero = KnownZero.trunc(InBits);
2297 KnownOne = KnownOne.trunc(InBits);
2306 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
2307 APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
2309 KnownZero = KnownZero.trunc(InBits);
2310 KnownOne = KnownOne.trunc(InBits);
2329 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
2330 KnownZero = KnownZero.trunc(InBits);
2339 unsigned InBits = InVT.getScalarType().getSizeInBits(); local
[all...]

Completed in 174 milliseconds