Home
last modified time | relevance | path

Searched refs:getLowBits (Results 1 – 3 of 3) sorted by relevance

/third_party/protobuf/js/experimental/runtime/
Dint64_test.js13 expect(int64.getLowBits()).toEqual(0);
19 expect(int64.getLowBits()).toEqual(0);
42 expect(int64.getLowBits()).toEqual(0xFFFFFFFF | 0);
71 expect(int64.getLowBits()).toEqual(1);
77 expect(int64.getLowBits()).toEqual(1);
Dint64.js112 return new Int64(value.getLowBits(), value.getHighBits());
155 getLowBits() { method in Int64
314 int64 = negate(int64.getLowBits(), int64.getHighBits());
/third_party/protobuf/js/experimental/runtime/kernel/
Dwriter.js255 this.writeVarint64_(value.getHighBits(), value.getLowBits());
288 view.setInt32(0, value.getLowBits(), true);
404 const lowBits = value.getLowBits();
589 writer.writeVarint64_(val.getHighBits(), val.getLowBits()));