Lines Matching defs:Big
20828 // 2^31-1 ("Small") and from 2^31 to 2^32-1 ("Big").
20830 SDValue Big =
20837 // as our indicator that we rather use "Big" instead of "Small".
20840 // and "0x80000000 | Big" if all bits in "IsOverflown" are set.
20845 SDValue Overflow = DAG.getNode(ISD::OR, dl, VT, Small, Big);
20853 DAG.getNode(ISD::AND, dl, VT, Big, IsOverflown));
21115 // (i32) 0 to 2^31-1 ("Small") and from 2^31 to 2^32-1 ("Big").
21116 // (i64) 0 to 2^63-1 ("Small") and from 2^63 to 2^64-1 ("Big").
21120 SDValue Big = DAG.getNode(
21127 // as our indicator that we rather use "Big" instead of "Small".
21130 // and "0x80000000 | Big" if all bits in "IsOverflown" are set.
21134 DAG.getNode(ISD::AND, dl, VT, Big, IsOverflown));