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

  /external/clang/lib/Frontend/
InitPreprocessor.cpp 180 /// named MacroName with the max value for a type with width 'TypeWidth' a
182 static void DefineTypeSize(const Twine &MacroName, unsigned TypeWidth,
185 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
186 : llvm::APInt::getMaxValue(TypeWidth);
227 int TypeWidth = TI.getTypeWidth(Ty);
232 if (TypeWidth == 64)
237 DefineType(Prefix + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
238 DefineFmt(Prefix + Twine(TypeWidth), Ty, TI, Builder);
241 Builder.defineMacro(Prefix + Twine(TypeWidth) + "_C_SUFFIX__", ConstSuffix);
247 int TypeWidth = TI.getTypeWidth(Ty)
    [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/vixl/test/
test-simulator-a64.cc     [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...]

Completed in 116 milliseconds