HomeSort by relevance Sort by last modified time
    Searched defs:ZigZagDecode64 (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/protobuf/src/google/protobuf/
wire_format_unittest.cc 589 #define ZigZagDecode64(x) WireFormatLite::ZigZagDecode64(x)
620 EXPECT_EQ( 0, ZigZagDecode64(0u));
621 EXPECT_EQ(-1, ZigZagDecode64(1u));
622 EXPECT_EQ( 1, ZigZagDecode64(2u));
623 EXPECT_EQ(-2, ZigZagDecode64(3u));
624 EXPECT_EQ(LL(0x000000003FFFFFFF), ZigZagDecode64(ULL(0x000000007FFFFFFE)));
625 EXPECT_EQ(LL(0xFFFFFFFFC0000000), ZigZagDecode64(ULL(0x000000007FFFFFFF)));
626 EXPECT_EQ(LL(0x000000007FFFFFFF), ZigZagDecode64(ULL(0x00000000FFFFFFFE)));
627 EXPECT_EQ(LL(0xFFFFFFFF80000000), ZigZagDecode64(ULL(0x00000000FFFFFFFF)))
    [all...]
wire_format_lite.h 233 static int64 ZigZagDecode64(uint64 n);
658 inline int64 WireFormatLite::ZigZagDecode64(uint64 n) {

Completed in 42 milliseconds