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

  /external/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 50 CharUnits TypeSize, QualType ToPointeeTy) {
68 if (ArrayTy->getSize() == 1 && TypeSize > FlexSize)
69 TypeSize -= FlexSize;
81 CharUnits Left = RegionSize - TypeSize;
122 CharUnits typeSize = C.getASTContext().getTypeSizeInChars(ToPointeeTy);
125 if (typeSize.isZero())
128 if (regionSize % typeSize == 0)
131 if (evenFlexibleArraySize(Ctx, regionSize, typeSize, ToPointeeTy))
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 370 Value *Addr, uint32_t TypeSize, bool IsWrite,
373 Value *ShadowValue, uint32_t TypeSize);
599 static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
600 size_t Res = countTrailingZeros(TypeSize / 8);
757 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
759 assert((TypeSize % 8) == 0);
769 if ((TypeSize == 8 || TypeSize == 16 || TypeSize == 32 || TypeSize == 64 |
    [all...]
ThreadSanitizer.cpp 556 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
557 if (TypeSize != 8 && TypeSize != 16 &&
558 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
563 size_t Idx = countTrailingZeros(TypeSize / 8);
MemorySanitizer.cpp 493 unsigned TypeSizeToSizeIndex(unsigned TypeSize) {
494 if (TypeSize <= 8) return 0;
495 return Log2_32_Ceil(TypeSize / 8);
774 uint32_t TypeSize = MS.DL->getTypeSizeInBits(OrigTy);
775 return IntegerType::get(*MS.C, TypeSize);
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 658 void LayoutWideBitField(uint64_t FieldSize, uint64_t TypeSize,
    [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 266 APInt TypeSize(IntPtrWidth, DL->getTypeAllocSize(GTI.getIndexedType()));
267 Offset += OpC->getValue().sextOrTrunc(IntPtrWidth) * TypeSize;
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 439 uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity();
444 llvm::ConstantInt::get(SizeTy, TypeSize),
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 645 uint64_t TypeSize = TD ? TD->getTypeAllocSize(IndexedTy) : 1;
649 unsigned(countTrailingZeros(TypeSize) +
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaDecl.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]

Completed in 407 milliseconds