Searched refs:TWO_PWR_32_DBL (Results 1 – 1 of 1) sorted by relevance
60 return new Int64(value, value / TWO_PWR_32_DBL);62 return negate(-value, -value / TWO_PWR_32_DBL);134 const result = this.highBits_ * TWO_PWR_32_DBL + this.getLowBitsUnsigned();248 return String(TWO_PWR_32_DBL * highBits + lowBits);344 if (lowBits >= TWO_PWR_32_DBL) {345 highBits = highBits + ((lowBits / TWO_PWR_32_DBL) | 0);346 lowBits = lowBits % TWO_PWR_32_DBL;398 const TWO_PWR_32_DBL = 0x100000000; constant