ZigZagDecode32    231 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static int32  ZigZagDecode32(uint32 n);
ZigZagDecode32    649 third_party/protobuf/src/google/protobuf/wire_format_lite.h inline int32 WireFormatLite::ZigZagDecode32(uint32 n) {
ZigZagDecode32     89 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   *value = ZigZagDecode32(temp);
ZigZagDecode32    587 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc #define ZigZagDecode32(x) WireFormatLite::ZigZagDecode32(x)
ZigZagDecode32    600 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ( 0, ZigZagDecode32(0u));
ZigZagDecode32    601 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(-1, ZigZagDecode32(1u));
ZigZagDecode32    602 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ( 1, ZigZagDecode32(2u));
ZigZagDecode32    603 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(-2, ZigZagDecode32(3u));
ZigZagDecode32    604 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(0x3FFFFFFF, ZigZagDecode32(0x7FFFFFFEu));
ZigZagDecode32    605 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(0xC0000000, ZigZagDecode32(0x7FFFFFFFu));
ZigZagDecode32    606 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(0x7FFFFFFF, ZigZagDecode32(0xFFFFFFFEu));
ZigZagDecode32    607 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(0x80000000, ZigZagDecode32(0xFFFFFFFFu));
ZigZagDecode32    633 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(    0, ZigZagDecode32(ZigZagEncode32(    0)));
ZigZagDecode32    634 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(    1, ZigZagDecode32(ZigZagEncode32(    1)));
ZigZagDecode32    635 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(   -1, ZigZagDecode32(ZigZagEncode32(   -1)));
ZigZagDecode32    636 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(14927, ZigZagDecode32(ZigZagEncode32(14927)));
ZigZagDecode32    637 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(-3612, ZigZagDecode32(ZigZagEncode32(-3612)));