ZigZagEncode32 4881 third_party/protobuf/src/google/protobuf/descriptor.cc google::protobuf::internal::WireFormatLite::ZigZagEncode32(value)); ZigZagEncode32 230 third_party/protobuf/src/google/protobuf/wire_format_lite.h static uint32 ZigZagEncode32(int32 n); ZigZagEncode32 644 third_party/protobuf/src/google/protobuf/wire_format_lite.h inline uint32 WireFormatLite::ZigZagEncode32(int32 n) { ZigZagEncode32 438 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h output->WriteVarint32(ZigZagEncode32(value)); ZigZagEncode32 525 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h return io::CodedOutputStream::WriteVarint32ToArray(ZigZagEncode32(value), ZigZagEncode32 728 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h return io::CodedOutputStream::VarintSize32(ZigZagEncode32(value)); ZigZagEncode32 586 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc #define ZigZagEncode32(x) WireFormatLite::ZigZagEncode32(x) ZigZagEncode32 591 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ(0u, ZigZagEncode32( 0)); ZigZagEncode32 592 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ(1u, ZigZagEncode32(-1)); ZigZagEncode32 593 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ(2u, ZigZagEncode32( 1)); ZigZagEncode32 594 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ(3u, ZigZagEncode32(-2)); ZigZagEncode32 595 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ(0x7FFFFFFEu, ZigZagEncode32(0x3FFFFFFF)); ZigZagEncode32 596 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ(0x7FFFFFFFu, ZigZagEncode32(0xC0000000)); ZigZagEncode32 597 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ(0xFFFFFFFEu, ZigZagEncode32(0x7FFFFFFF)); ZigZagEncode32 598 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ(0xFFFFFFFFu, ZigZagEncode32(0x80000000)); ZigZagEncode32 633 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ( 0, ZigZagDecode32(ZigZagEncode32( 0))); ZigZagEncode32 634 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ( 1, ZigZagDecode32(ZigZagEncode32( 1))); ZigZagEncode32 635 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ( -1, ZigZagDecode32(ZigZagEncode32( -1))); ZigZagEncode32 636 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ(14927, ZigZagDecode32(ZigZagEncode32(14927))); ZigZagEncode32 637 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc EXPECT_EQ(-3612, ZigZagDecode32(ZigZagEncode32(-3612)));