Lines Matching refs:APInt
25 APInt AOut(Bits, AOut_); in TestBinOpExhaustive()
26 APInt AB1 = PropagateFn(0, AOut, Known1, Known2); in TestBinOpExhaustive()
27 APInt AB2 = PropagateFn(1, AOut, Known1, Known2); in TestBinOpExhaustive()
39 APInt AB1R = PropagateFn(0, AOut, Known1Redacted, Known2Redacted); in TestBinOpExhaustive()
40 APInt AB2R = PropagateFn(1, AOut, Known1Redacted, Known2Redacted); in TestBinOpExhaustive()
44 ForeachNumInKnownBits(Known1, [&](APInt Value1) { in TestBinOpExhaustive()
45 ForeachNumInKnownBits(Known2, [&](APInt Value2) { in TestBinOpExhaustive()
46 APInt ReferenceResult = EvalFn((Value1 & AB1), (Value2 & AB2)); in TestBinOpExhaustive()
47 APInt Result = EvalFn(Value1, Value2); in TestBinOpExhaustive()
58 [](APInt N1, APInt N2) -> APInt { return N1 + N2; }); in TEST()
63 [](APInt N1, APInt N2) -> APInt { return N1 - N2; }); in TEST()