Searched refs:Other_min (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/IR/ |
D | ConstantRange.cpp | 709 APInt Other_min = Other.getUnsignedMin().zext(getBitWidth() * 2); in multiply() local 712 ConstantRange Result_zext = ConstantRange(this_min * Other_min, in multiply() 731 Other_min = Other.getSignedMin().sext(getBitWidth() * 2); in multiply() 734 auto L = {this_min * Other_min, this_min * Other_max, in multiply() 735 this_max * Other_min, this_max * Other_max}; in multiply()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | ConstantRange.cpp | 952 APInt Other_min = Other.getUnsignedMin().zext(getBitWidth() * 2); in multiply() local 955 ConstantRange Result_zext = ConstantRange(this_min * Other_min, in multiply() 975 Other_min = Other.getSignedMin().sext(getBitWidth() * 2); in multiply() 978 auto L = {this_min * Other_min, this_min * Other_max, in multiply() 979 this_max * Other_min, this_max * Other_max}; in multiply() 1357 APInt Other_min = Other.getSignedMin().sext(getBitWidth() * 2); in smul_sat() local 1360 auto L = {this_min * Other_min, this_min * Other_max, this_max * Other_min, in smul_sat()
|
/external/llvm-project/llvm/lib/IR/ |
D | ConstantRange.cpp | 1018 APInt Other_min = Other.getUnsignedMin().zext(getBitWidth() * 2); in multiply() local 1021 ConstantRange Result_zext = ConstantRange(this_min * Other_min, in multiply() 1041 Other_min = Other.getSignedMin().sext(getBitWidth() * 2); in multiply() 1044 auto L = {this_min * Other_min, this_min * Other_max, in multiply() 1045 this_max * Other_min, this_max * Other_max}; in multiply() 1459 APInt Other_min = Other.getSignedMin().sext(getBitWidth() * 2); in smul_sat() local 1462 auto L = {this_min * Other_min, this_min * Other_max, this_max * Other_min, in smul_sat()
|