Home
last modified time | relevance | path

Searched refs:LongSize (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp334 static ShadowMapping getShadowMapping(Triple &TargetTriple, int LongSize, in getShadowMapping() argument
352 if (LongSize == 32) { in getShadowMapping()
483 int LongSize; member
1430 int LongSize = M.getDataLayout().getPointerSizeInBits(); in runOnModule() local
1431 IntptrTy = Type::getIntNTy(*C, LongSize); in runOnModule()
1433 Mapping = getShadowMapping(TargetTriple, LongSize, CompileKernel); in runOnModule()
1515 LongSize = M.getDataLayout().getPointerSizeInBits(); in doInitialization()
1516 IntptrTy = Type::getIntNTy(*C, LongSize); in doInitialization()
1526 Mapping = getShadowMapping(TargetTriple, LongSize, CompileKernel); in doInitialization()
1697 if (LongSize != 32) return false; in LooksLikeCodeInBug11395()
[all …]
/external/clang/lib/Sema/
DSemaExpr.cpp3381 unsigned LongSize = Context.getTargetInfo().getLongWidth(); in ActOnNumericConstant() local
3384 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
3386 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
3402 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0 in ActOnNumericConstant()
3406 Width = LongSize; in ActOnNumericConstant()