Home
last modified time | relevance | path

Searched refs:ZigZagDecode64 (Results 1 – 8 of 8) sorted by relevance

/external/protobuf/src/google/protobuf/
Dwire_format_unittest.cc753 #define ZigZagDecode64(x) WireFormatLite::ZigZagDecode64(x) in TEST() macro
784 EXPECT_EQ(0, ZigZagDecode64(0u)); in TEST()
785 EXPECT_EQ(-1, ZigZagDecode64(1u)); in TEST()
786 EXPECT_EQ(1, ZigZagDecode64(2u)); in TEST()
787 EXPECT_EQ(-2, ZigZagDecode64(3u)); in TEST()
788 EXPECT_EQ(LL(0x000000003FFFFFFF), ZigZagDecode64(ULL(0x000000007FFFFFFE))); in TEST()
789 EXPECT_EQ(LL(0xFFFFFFFFC0000000), ZigZagDecode64(ULL(0x000000007FFFFFFF))); in TEST()
790 EXPECT_EQ(LL(0x000000007FFFFFFF), ZigZagDecode64(ULL(0x00000000FFFFFFFE))); in TEST()
791 EXPECT_EQ(LL(0xFFFFFFFF80000000), ZigZagDecode64(ULL(0x00000000FFFFFFFF))); in TEST()
792 EXPECT_EQ(LL(0x7FFFFFFFFFFFFFFF), ZigZagDecode64(ULL(0xFFFFFFFFFFFFFFFE))); in TEST()
[all …]
Dparse_context.h544 return WireFormatLite::ZigZagDecode64(tmp); in ReadVarintZigZag64()
562 return WireFormatLite::ZigZagDecode64(tmp); in ReadVarintZigZag64()
Dparse_context.cc383 val = WireFormatLite::ZigZagDecode64(varint); in VarintParser()
Dwire_format_lite.h244 static int64 ZigZagDecode64(uint64 n);
870 inline int64 WireFormatLite::ZigZagDecode64(uint64 n) { in ZigZagDecode64() function
939 *value = ZigZagDecode64(temp);
Dmessage.cc200 int64 value = WireFormatLite::ZigZagDecode64(val); in SetField()
Dmap_type_handler.h474 *value = WireFormatLite::ZigZagDecode64(tmp);
/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectsource.cc853 ow->RenderInt64(field_name, WireFormatLite::ZigZagDecode64(buffer64)); in RenderNonMessageField()
984 result = StrCat(WireFormatLite::ZigZagDecode64(buffer64)); in ReadFieldValueAsString()
/external/tensorflow/tensorflow/core/util/proto/
Ddecode.h186 *value = WireFormatLite::ZigZagDecode64(temp);