Searched refs:Other_max (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/IR/ |
D | ConstantRange.cpp | 710 APInt Other_max = Other.getUnsignedMax().zext(getBitWidth() * 2); in multiply() local 713 this_max * Other_max + 1); in multiply() 732 Other_max = Other.getSignedMax().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 | 953 APInt Other_max = Other.getUnsignedMax().zext(getBitWidth() * 2); in multiply() local 956 this_max * Other_max + 1); in multiply() 976 Other_max = Other.getSignedMax().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() 1358 APInt Other_max = Other.getSignedMax().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() 1361 this_max * Other_max}; in smul_sat()
|
/external/llvm-project/llvm/lib/IR/ |
D | ConstantRange.cpp | 1019 APInt Other_max = Other.getUnsignedMax().zext(getBitWidth() * 2); in multiply() local 1022 this_max * Other_max + 1); in multiply() 1042 Other_max = Other.getSignedMax().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() 1460 APInt Other_max = Other.getSignedMax().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() 1463 this_max * Other_max}; in smul_sat()
|