Lines Matching refs:low_
7466 this.low_ = low | 0; // force into 32 signed bits.
7677 return this.low_;
7747 return this.low_;
7753 return (this.low_ >= 0) ?
7754 this.low_ : goog.math.Long.TWO_PWR_32_DBL_ + this.low_;
7770 var val = this.high_ != 0 ? this.high_ : this.low_;
7783 return this.high_ == 0 && this.low_ == 0;
7795 return (this.low_ & 1) == 1;
7804 return (this.high_ == other.high_) && (this.low_ == other.low_);
7813 return (this.high_ != other.high_) || (this.low_ != other.low_);
7902 var a16 = this.low_ >>> 16;
7903 var a00 = this.low_ & 0xFFFF;
7907 var b16 = other.low_ >>> 16;
7908 var b00 = other.low_ & 0xFFFF;
7975 var a16 = this.low_ >>> 16;
7976 var a00 = this.low_ & 0xFFFF;
7980 var b16 = other.low_ >>> 16;
7981 var b00 = other.low_ & 0xFFFF;
8104 return goog.math.Long.fromBits(~this.low_, ~this.high_);
8114 return goog.math.Long.fromBits(this.low_ & other.low_,
8125 return goog.math.Long.fromBits(this.low_ | other.low_,
8136 return goog.math.Long.fromBits(this.low_ ^ other.low_,
8151 var low = this.low_;
8176 var low = this.low_;
8203 var low = this.low_;
8949 HEAP32[tempDoublePtr>>2] = ret.low_;
9008 HEAP32[tempDoublePtr>>2] = ret.low_;