HomeSort by relevance Sort by last modified time
    Searched defs:TypeWidth (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/Frontend/
InitPreprocessor.cpp 182 /// named MacroName with the max value for a type with width 'TypeWidth' a
184 static void DefineTypeSize(const Twine &MacroName, unsigned TypeWidth,
187 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
188 : llvm::APInt::getMaxValue(TypeWidth);
229 int TypeWidth = TI.getTypeWidth(Ty);
234 if (TypeWidth == 64)
239 DefineType(Prefix + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
240 DefineFmt(Prefix + Twine(TypeWidth), Ty, TI, Builder);
243 Builder.defineMacro(Prefix + Twine(TypeWidth) + "_C_SUFFIX__", ConstSuffix);
249 int TypeWidth = TI.getTypeWidth(Ty)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 286 uint64_t TypeWidth = Ctx.getTypeSize(SymbolType);
288 if (ValWidth < TypeWidth) {
291 } else if (ValWidth == TypeWidth) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 128 unsigned TypeWidth = I->getType()->getScalarSizeInBits();
133 unsigned LowBits = TypeWidth - CI->getZExtValue();
135 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits,
153 unsigned TypeWidth = I->getType()->getScalarSizeInBits();
157 if (CI->getValue().ult(TypeWidth) && CI->getZExtValue() > NumBits) {
160 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits,
220 unsigned TypeWidth = BO->getType()->getScalarSizeInBits();
229 if (NewShAmt >= TypeWidth)
241 APInt Mask(APInt::getLowBitsSet(TypeWidth, TypeWidth - NumBits))
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 107 milliseconds