Searched defs:IsArithmeticZero (Results 1 - 1 of 1) sorted by relevance

/art/compiler/optimizing/
H A Dnodes.h2673 virtual bool IsArithmeticZero() const { return false; } function in class:art::HConstant
2727 bool IsArithmeticZero() const OVERRIDE { return GetValue() == 0; }
2766 bool IsArithmeticZero() const OVERRIDE { return GetValue() == 0; }
2800 bool IsArithmeticZero() const OVERRIDE {
2804 return IsArithmeticZero() && !std::signbit(value_);
2807 return IsArithmeticZero() && std::signbit(value_);
2851 bool IsArithmeticZero() const OVERRIDE {
2855 return IsArithmeticZero() && !std::signbit(value_);
2858 return IsArithmeticZero() && std::signbit(value_);

Completed in 380 milliseconds