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

  /external/protobuf/csharp/src/Google.Protobuf/
WireFormat.cs 49 public enum WireType : uint
83 public static WireType GetTagWireType(uint tag)
85 return (WireType) (tag & TagTypeMask);
99 public static uint MakeTag(int fieldNumber, WireType wireType)
101 return (uint) (fieldNumber << TagTypeBits) | (uint) wireType;
  /external/protobuf/src/google/protobuf/compiler/java/
java_map_field.cc 73 string WireType(const FieldDescriptor* field) {
93 (*variables)["key_wire_type"] = WireType(key);
99 (*variables)["value_wire_type"] = WireType(value);
117 (*variables)["value_wire_type"] = WireType(value);
java_map_field_lite.cc 73 string WireType(const FieldDescriptor* field) {
93 (*variables)["key_wire_type"] = WireType(key);
99 (*variables)["value_wire_type"] = WireType(value);
117 (*variables)["value_wire_type"] = WireType(value);
  /external/tensorflow/tensorflow/core/distributed_runtime/
tensor_coding.cc 113 // We only need some of the wiretype values for this code
114 enum WireType {
119 inline WireType GetTagWireType(uint32 tag) {
120 return static_cast<WireType>(tag & 0x7);
153 WireType wt = GetTagWireType(p.first);
225 WireType wt = GetTagWireType(p.first);
  /external/protobuf/src/google/protobuf/
wire_format_lite.h 86 enum WireType {
136 // Given a FieldSescriptor::Type return its WireType
137 static inline WireFormatLite::WireType WireTypeForFieldType(
152 static uint32 MakeTag(int field_number, WireType type);
153 static WireType GetTagWireType(uint32 tag);
355 INL static void WriteTag(field_number, WireType type, output);
421 INL static uint8* WriteTagToArray(field_number, WireType type, output);
537 static const WireFormatLite::WireType kWireTypeForFieldType[];
589 inline uint32 WireFormatLite::MakeTag(int field_number, WireType type) {
593 inline WireFormatLite::WireType WireFormatLite::GetTagWireType(uint32 tag)
    [all...]

Completed in 456 milliseconds