Searched defs:ZigZagEncode64 (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dwire_format_unittest.cc588 #define ZigZagEncode64(x) WireFormatLite::ZigZagEncode64(x) macro
609 EXPECT_EQ(0u, ZigZagEncode64( 0));
610 EXPECT_EQ(1u, ZigZagEncode64(-1));
611 EXPECT_EQ(2u, ZigZagEncode64( 1));
612 EXPECT_EQ(3u, ZigZagEncode64(-2));
613 EXPECT_EQ(ULL(0x000000007FFFFFFE), ZigZagEncode64(LL(0x000000003FFFFFFF)));
614 EXPECT_EQ(ULL(0x000000007FFFFFFF), ZigZagEncode64(LL(0xFFFFFFFFC0000000)));
615 EXPECT_EQ(ULL(0x00000000FFFFFFFE), ZigZagEncode64(LL(0x000000007FFFFFFF)));
616 EXPECT_EQ(ULL(0x00000000FFFFFFFF), ZigZagEncode64(L
[all...]
H A Dwire_format_lite.h232 static uint64 ZigZagEncode64(int64 n);
653 inline uint64 WireFormatLite::ZigZagEncode64(int64 n) { function in class:google::protobuf::internal::WireFormatLite
/external/protobuf/src/google/protobuf/
H A Dwire_format_unittest.cc540 #define ZigZagEncode64(x) WireFormatLite::ZigZagEncode64(x) macro
561 EXPECT_EQ(0u, ZigZagEncode64( 0));
562 EXPECT_EQ(1u, ZigZagEncode64(-1));
563 EXPECT_EQ(2u, ZigZagEncode64( 1));
564 EXPECT_EQ(3u, ZigZagEncode64(-2));
565 EXPECT_EQ(ULL(0x000000007FFFFFFE), ZigZagEncode64(LL(0x000000003FFFFFFF)));
566 EXPECT_EQ(ULL(0x000000007FFFFFFF), ZigZagEncode64(LL(0xFFFFFFFFC0000000)));
567 EXPECT_EQ(ULL(0x00000000FFFFFFFE), ZigZagEncode64(LL(0x000000007FFFFFFF)));
568 EXPECT_EQ(ULL(0x00000000FFFFFFFF), ZigZagEncode64(L
[all...]
H A Dwire_format_lite.h224 static uint64 ZigZagEncode64(int64 n);
607 inline uint64 WireFormatLite::ZigZagEncode64(int64 n) { function in class:google::protobuf::internal::WireFormatLite

Completed in 713 milliseconds