Searched defs:ResSize (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGStmt.cpp1694 uint64_t ResSize = CGM.getDataLayout().getTypeSizeInBits(TruncTy); local
1696 llvm::IntegerType::get(getLLVMContext(), (unsigned)ResSize));
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1255 uint64_t ResSize = TD->getTypeAllocSize(ResElTy); local
1257 if (ResSize && SrcSize % ResSize == 0) {
1260 uint64_t Scale = SrcSize / ResSize;
1289 uint64_t ResSize = TD->getTypeAllocSize(ResElTy); local
1292 if (ResSize && ArrayEltSize % ResSize == 0) {
1295 uint64_t Scale = ArrayEltSize / ResSize;

Completed in 780 milliseconds