Searched refs:ZigZagDecode64 (Results 1 – 8 of 8) sorted by relevance
/external/protobuf/src/google/protobuf/ |
D | wire_format_unittest.cc | 753 #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 …]
|
D | parse_context.h | 544 return WireFormatLite::ZigZagDecode64(tmp); in ReadVarintZigZag64() 562 return WireFormatLite::ZigZagDecode64(tmp); in ReadVarintZigZag64()
|
D | parse_context.cc | 383 val = WireFormatLite::ZigZagDecode64(varint); in VarintParser()
|
D | wire_format_lite.h | 244 static int64 ZigZagDecode64(uint64 n); 870 inline int64 WireFormatLite::ZigZagDecode64(uint64 n) { in ZigZagDecode64() function 939 *value = ZigZagDecode64(temp);
|
D | message.cc | 200 int64 value = WireFormatLite::ZigZagDecode64(val); in SetField()
|
D | map_type_handler.h | 474 *value = WireFormatLite::ZigZagDecode64(tmp);
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectsource.cc | 853 ow->RenderInt64(field_name, WireFormatLite::ZigZagDecode64(buffer64)); in RenderNonMessageField() 984 result = StrCat(WireFormatLite::ZigZagDecode64(buffer64)); in ReadFieldValueAsString()
|
/external/tensorflow/tensorflow/core/util/proto/ |
D | decode.h | 186 *value = WireFormatLite::ZigZagDecode64(temp);
|