Lines Matching refs:Int64
40 goog.provide('jspb.arith.Int64');
315 * Int64 is like UInt64, but modifies string conversions to interpret the stored
328 jspb.arith.Int64 = function(lo, hi) {
344 * @param {!jspb.arith.Int64} other
345 * @return {!jspb.arith.Int64}
347 jspb.arith.Int64.prototype.add = function(other) {
352 return new jspb.arith.Int64(lo >>> 0, hi >>> 0);
358 * @param {!jspb.arith.Int64} other
359 * @return {!jspb.arith.Int64}
361 jspb.arith.Int64.prototype.sub = function(other) {
366 return new jspb.arith.Int64(lo >>> 0, hi >>> 0);
372 * @return {!jspb.arith.Int64}
374 jspb.arith.Int64.prototype.clone = function() {
375 return new jspb.arith.Int64(this.lo, this.hi);
384 jspb.arith.Int64.prototype.toString = function() {
398 * @return {?jspb.arith.Int64}
400 jspb.arith.Int64.fromString = function(s) {
412 return new jspb.arith.Int64(num.lo, num.hi);