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

  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
WireFormatMicro.java 55 static final int TAG_TYPE_BITS = 3;
56 static final int TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1;
65 return tag >>> TAG_TYPE_BITS;
70 return (fieldNumber << TAG_TYPE_BITS) | wireType;
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 55 static final int TAG_TYPE_BITS = 3;
56 static final int TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1;
65 return tag >>> TAG_TYPE_BITS;
70 return (fieldNumber << TAG_TYPE_BITS) | wireType;
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
wire_format.py 40 TAG_TYPE_BITS = 3 # Number of bits used to hold type info in a proto tag.
41 TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1 # 0x7
44 # We use the least-significant TAG_TYPE_BITS bits of the varint-encoded
90 return (field_number << TAG_TYPE_BITS) | wire_type
97 return (tag >> TAG_TYPE_BITS), (tag & TAG_TYPE_MASK)
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 55 static final int TAG_TYPE_BITS = 3;
56 static final int TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1;
65 return tag >>> TAG_TYPE_BITS;
70 return (fieldNumber << TAG_TYPE_BITS) | wireType;
  /external/protobuf/python/google/protobuf/internal/
wire_format.py 40 TAG_TYPE_BITS = 3 # Number of bits used to hold type info in a proto tag.
41 TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1 # 0x7
44 # We use the least-significant TAG_TYPE_BITS bits of the varint-encoded
90 return (field_number << TAG_TYPE_BITS) | wire_type
97 return (tag >> TAG_TYPE_BITS), (tag & TAG_TYPE_MASK)
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
WireFormatNano.java 60 static final int TAG_TYPE_BITS = 3;
61 static final int TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1;
70 return tag >>> TAG_TYPE_BITS;
75 return (fieldNumber << TAG_TYPE_BITS) | wireType;

Completed in 546 milliseconds