HomeSort by relevance Sort by last modified time
    Searched refs:ZigZagDecode32 (Results 1 - 3 of 3) sorted by null

  /external/protobuf/src/google/protobuf/
wire_format_unittest.cc 666 #define ZigZagDecode32(x) WireFormatLite::ZigZagDecode32(x)
679 EXPECT_EQ( 0, ZigZagDecode32(0u));
680 EXPECT_EQ(-1, ZigZagDecode32(1u));
681 EXPECT_EQ( 1, ZigZagDecode32(2u));
682 EXPECT_EQ(-2, ZigZagDecode32(3u));
683 EXPECT_EQ(0x3FFFFFFF, ZigZagDecode32(0x7FFFFFFEu));
684 EXPECT_EQ(0xC0000000, ZigZagDecode32(0x7FFFFFFFu));
685 EXPECT_EQ(0x7FFFFFFF, ZigZagDecode32(0xFFFFFFFEu));
686 EXPECT_EQ(0x80000000, ZigZagDecode32(0xFFFFFFFFu))
    [all...]
wire_format_lite.h 232 static int32 ZigZagDecode32(uint32 n);
644 inline int32 WireFormatLite::ZigZagDecode32(uint32 n) {
wire_format_lite_inl.h 94 *value = ZigZagDecode32(temp);
    [all...]

Completed in 325 milliseconds