HomeSort by relevance Sort by last modified time
    Searched refs:TypeSize (Results 1 - 20 of 20) 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 436 uint64_t *TypeSize, unsigned *Alignment);
441 Value *Addr, uint32_t TypeSize, bool IsWrite,
444 uint32_t TypeSize, bool IsWrite,
448 Value *ShadowValue, uint32_t TypeSize);
469 uint64_t TypeSize) const;
780 static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
781 size_t Res = countTrailingZeros(TypeSize / 8);
    [all...]
ThreadSanitizer.cpp 444 const uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
446 if (Alignment == 0 || Alignment >= 8 || (Alignment % (TypeSize / 8)) == 0)
591 uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
592 if (TypeSize != 8 && TypeSize != 16 &&
593 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
598 size_t Idx = countTrailingZeros(TypeSize / 8);
SanitizerCoverage.cpp 421 uint64_t TypeSize = DL->getTypeStoreSizeInBits(A0->getType());
425 {ConstantInt::get(Int64Ty, (TypeSize << 32) | ICMP->getPredicate()),
MemorySanitizer.cpp 592 unsigned TypeSizeToSizeIndex(unsigned TypeSize) {
593 if (TypeSize <= 8) return 0;
594 return Log2_32_Ceil(TypeSize / 8);
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSGlobalInfoPass.cpp 155 auto TypeSize = DL.getTypeAllocSize(GlobalType);
157 GVSizes32.push_back(TypeSize);
159 GVSizes64.push_back(TypeSize);
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 677 void LayoutWideBitField(uint64_t FieldSize, uint64_t TypeSize,
    [all...]
  /external/llvm/lib/Analysis/
InlineCost.cpp 285 APInt TypeSize(IntPtrWidth, DL.getTypeAllocSize(GTI.getIndexedType()));
286 Offset += OpC->getValue().sextOrTrunc(IntPtrWidth) * TypeSize;
    [all...]
ValueTracking.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 626 uint64_t TypeSize = DL.getTypeAllocSize(AI->getAllocatedType());
629 if ((CS->getValue().zextOrSelf(128)*APInt(128, TypeSize)).ugt(MaxSize))
    [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp     [all...]
ItaniumCXXABI.cpp     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 256 milliseconds