Lines Matching defs:Big
21209 // 2^31-1 ("Small") and from 2^31 to 2^32-1 ("Big").
21211 SDValue Big =
21218 // as our indicator that we rather use "Big" instead of "Small".
21221 // and "0x80000000 | Big" if all bits in "IsOverflown" are set.
21226 SDValue Overflow = DAG.getNode(ISD::OR, dl, VT, Small, Big);
21234 DAG.getNode(ISD::AND, dl, VT, Big, IsOverflown));
21496 // (i32) 0 to 2^31-1 ("Small") and from 2^31 to 2^32-1 ("Big").
21497 // (i64) 0 to 2^63-1 ("Small") and from 2^63 to 2^64-1 ("Big").
21501 SDValue Big = DAG.getNode(
21508 // as our indicator that we rather use "Big" instead of "Small".
21511 // and "0x80000000 | Big" if all bits in "IsOverflown" are set.
21515 DAG.getNode(ISD::AND, dl, VT, Big, IsOverflown));