Home | History | Annotate | Download | only in wtf

Lines Matching refs:ua

39     uint32_t ua = a;
41 uint32_t result = ua + ub;
45 if (!((ua ^ ub) >> 31) & (result ^ ua) >> 31)
46 result = std::numeric_limits<int>::max() + (ua >> 31);
53 uint32_t ua = a;
55 uint32_t result = ua - ub;
59 if ((ua ^ ub) >> 31 & (result ^ ua) >> 31)
60 result = std::numeric_limits<int>::max() + (ua >> 31);