Lines Matching defs:is_negative
2178 bool is_negative = (value < 0);2179 uint32_t bits = ((is_negative ? -value : value) << 1) |2180 static_cast<int32_t>(is_negative);2202 bool is_negative = (bits & 1) == 1;2204 return is_negative ? -result : result;