Searched refs:DstWidth (Results 1 - 4 of 4) sorted by relevance
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCasts.cpp | 1274 unsigned DstWidth = CI.getType()->getFPMantissaWidth(); local 1287 // Specifically, if OpWidth >= 2*DstWdith+1 and DstWidth is sufficient 1297 if (OpWidth >= 2*DstWidth+1 && DstWidth >= SrcWidth) { 1314 if (OpWidth >= LHSWidth + RHSWidth && DstWidth >= SrcWidth) { 1332 if (OpWidth >= 2*DstWidth && DstWidth >= SrcWidth) {
|
/external/llvm/lib/IR/ |
H A D | ConstantFold.cpp | 1054 unsigned DstWidth = CI2->getType()->getBitWidth(); local 1057 APInt PossiblySetBits(APInt::getLowBitsSet(DstWidth, SrcWidth)); 1073 unsigned DstWidth = CI2->getType()->getBitWidth(); local 1074 unsigned SrcWidth = std::min(DstWidth, Log2_32(GVAlign)); 1075 APInt BitsNotSet(APInt::getLowBitsSet(DstWidth, SrcWidth));
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
H A D | ConstantFold.cpp | 1107 unsigned DstWidth = CI2->getType()->getBitWidth(); local 1110 APInt PossiblySetBits(APInt::getLowBitsSet(DstWidth, SrcWidth)); 1126 unsigned DstWidth = CI2->getType()->getBitWidth(); local 1127 unsigned SrcWidth = std::min(DstWidth, Log2_32(GVAlign)); 1128 APInt BitsNotSet(APInt::getLowBitsSet(DstWidth, SrcWidth));
|
/external/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 1193 unsigned DstWidth = Context.getIntWidth(DstType); local 1197 AdjustAPSInt(RhsVal, DstWidth, DstIsSigned); 1213 AdjustAPSInt(Val, DstWidth, DstIsSigned);
|
Completed in 245 milliseconds