Searched refs:SizeInBytes (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp503 uint64_t SizeInBytes = ASan.TD->getTypeAllocSize(Ty); local
504 return SizeInBytes;
506 uint64_t getAlignedSize(uint64_t SizeInBytes) { argument
508 return ((SizeInBytes + RZ - 1) / RZ) * RZ;
511 uint64_t SizeInBytes = getAllocaSizeInBytes(AI); local
512 return getAlignedSize(SizeInBytes);
937 uint64_t SizeInBytes = TD->getTypeAllocSize(Ty); local
940 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
943 (SizeInBytes / MinRZ / 4) * MinRZ));
946 if (SizeInBytes
1307 uint64_t SizeInBytes = getAllocaSizeInBytes(AI); local
1395 uint64_t SizeInBytes = getAllocaSizeInBytes(AI); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp850 uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue();
851 if ((SizeInBytes >> 32) != 0)
863 return processLoopStridedStore(Pointer, (unsigned)SizeInBytes,
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp2423 uint64_t SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8;
2425 llvm::ConstantInt::get(CGF.Int32Ty, (SizeInBytes + 7) & ~7);
2920 unsigned SizeInBytes = CGF.getContext().getTypeSize(Ty) / 8;
2928 SizeInBytes = 16;
2931 unsigned Offset = llvm::RoundUpToAlignment(SizeInBytes, 8);
2965 if (SizeInBytes < 8) {
2967 AddrAsInt = Builder.CreateAdd(AddrAsInt, Builder.getInt64(8 - SizeInBytes));

Completed in 180 milliseconds