Home
last modified time | relevance | path

Searched refs:zigZagDecode64 (Results 1 - 2 of 2) sorted by relevance

/third_party/protobuf/php/tests/
H A DPhpImplementationTest.php260 $this->assertSame('0', GPBWire::zigZagDecode64(0));
261 $this->assertSame('-1', GPBWire::zigZagDecode64(1));
262 $this->assertSame('1', GPBWire::zigZagDecode64(2));
263 $this->assertSame('-2', GPBWire::zigZagDecode64(3));
288 $this->assertSame(0, GPBWire::zigZagDecode64(0));
289 $this->assertSame(-1, GPBWire::zigZagDecode64(1));
290 $this->assertSame(1, GPBWire::zigZagDecode64(2));
291 $this->assertSame(-2, GPBWire::zigZagDecode64(3));
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DGPBWire.php153 public static function zigZagDecode64($uint64) function
204 $value = GPBWire::zigZagDecode64($value);

Completed in 2 milliseconds